$(function() {
	
	// apply to all png images and to div#logo 
	$('img[src$=.png], #divBody, .clickToEnlarge').ifixpng(); 
	
	// tagline
    $("#divLinksLink").hover(
		function () {
			$(this).css("background-image", "url(\"/img/productsLinkBG-on.gif\")");
		}, 
		function () {
			$(this).css("background-image", "url(\"/img/productsLinkBG.gif\")");
		}
    );
    $("#divLinksLink").click(
		function () {
			window.location = "links.php";
		}
	);
	
	// initialize other page stuff
	if (typeof window.pageLoaded == "function") {
		pageLoaded();
	}
	
	// fancybox
	$("a.flvplayer").fancybox({frameWidth:570,frameHeight:422,hideOnContentClick:false})
	$("a.flvplayer_437x370").fancybox({frameWidth:437,frameHeight:370,hideOnContentClick:false})
	$("a.flvplayer_557x422").fancybox({frameWidth:561,frameHeight:422,hideOnContentClick:false})
	$("a.flvplayer_558x422").fancybox({frameWidth:561,frameHeight:422,hideOnContentClick:false})
	$("a.fancybox_img").fancybox();
	
});