// This is needed because we also have mootools on this page, instead of using the $ shortcut, we now have to use 'jQuery'
jQuery.noConflict();

jQuery(document).ready(function () {
	setupZoom();

	//This takes care of the PNG transperancy issues for IE6 (we are only going to worry about this for the public page)
	jQuery("#header h1 a,ul#navigation li a ,#splash h2,#splash #screenshot, #sign-up-bar a.button-sign-up, #video-bar li img, #screenshots li div.bot,#sidebar #quote,#sidebar #quote-bottom,#sidebar #features-list li img, #ZoomClose img, .MultiBoxClose ").pngfix();

	jQuery('#screenshots b').css('display','block');
	jQuery('#screenshots b').fadeTo(1,0.33);
	
	
// This is to fade in and out the magnifying glass icon on the screenshot previews	
	jQuery('#screenshots li').hover(
		function(){jQuery(this).find('span').fadeIn(300);jQuery(this).find('b').fadeTo(300,0)},
		function(){jQuery(this).find('span').fadeOut(300);jQuery(this).find('b').fadeTo(300,0.33)}
	);
	
	jQuery('#news').newsTicker();
	
});



