/*
/*	onLoad Functions
/*	----------------
/*	These initialize some of the dynamic functionality used by the theme
*/

$(document).ready(function() {
	// initialize home page slideshow (jQuery Cycle plug-in)
	$('#slideshow').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 5000, 
		randomizeEffects: false, 
		easing: 'easeOutCubic',
		cleartypeNoBg: true
	});
});

	function pop_win(url,w,h,win_name,scroll)
		{
		if(scroll)
			scroll = 'yes';
		else
			scroll = 'auto';
  		var left = (screen.width-w)/2;
  		var top= (screen.height-h)/2;
  		window.open(url,win_name,'resizable=yes,scrollbars='+scroll+',menubar=no,status=no,width='+w+',height='+h+',left='+left+',top='+top);
		}


