function loadScroller(path,id) {	$(id).load(path, function() {		$('.scroll-pane').jScrollPane({hideFocus:true});		});	}function loadHTML(path,id) {	$(id).load(path);	}$(function() {	$('.scroll-pane').jScrollPane({hideFocus:true});	$.ajaxSetup({cache: false});	});$(window).load(function() {	$('#slider').nivoSlider({		effect:'fade',		slices:15,		animSpeed:500,		pauseTime:3000,		directionNav:false, //Next &amp; Prev		controlNav:false, //1,2,3...		pauseOnHover:false, //Stop animation while hovering		});	});$(document).ready(function() {    $("iframe").each(function(){        var ifr_source = $(this).attr('src');        var wmode = "wmode=transparent";        if(ifr_source.indexOf('?') != -1) {            var getQString = ifr_source.split('?');            var oldString = getQString[1];            var newString = getQString[0];            $(this).attr('src',newString+'?'+wmode+'&'+oldString);        }        else $(this).attr('src',ifr_source+'?'+wmode);    });});
