/**
 * @author Marcus
 */
 $(document).ready(function() {
	setupMenu();
	
	$("img.hoverpuff").hover(
		function () {
			var image_name = this.src;
			this.src = image_name.replace("_out","_over");
		},
		function () {
			var image_name = this.src;

			this.src = image_name.replace("_over","_out");
		}
	);
});
 
function setupMenu() {
	$("img.hoverpuff").hover(
		function () {
			var image_name = this.src;
			this.src = image_name.replace("_out","_over");
		},
		function () {
			var image_name = this.src;

			this.src = image_name.replace("_over","_out");
		}
	);
	

	$("#gns li a img").not('.active').hover(
		function () {
			var image_name = this.src;
			this.src = image_name.replace("images/main_nav/normal","images/main_nav/hover");
		},
		function () {
			var image_name = this.src;

			this.src = image_name.replace("images/main_nav/hover","images/main_nav/normal");
		}
	);
	
	$("a.fancybox").click(function() {
		var clip_href = this.href.replace(new RegExp("watch\\?v=", "i"), 'v/');
		
		$.fancybox({
	        'titleShow'     : false,
	        'href' : clip_href,
	        'type'      : 'swf',
	        'swf'       : {'wmode':'transparent','allowfullscreen':'true'}
		});
		return false;
		
		
    });

		
	
}
/*
if(typeof sIFR == "function"){
	sIFR.replaceElement("h1", named({sFlashSrc: "/images/pill.swf", sColor: "#134b80",sFlashVars: "offsetTop=5", nPaddingRight: 15, nPaddingBottom:-10}));
	sIFR.replaceElement("p.footer_person_name", named({sFlashSrc: "/images/pill.swf", sColor: "#232323", sFlashVars: "offsetTop=1", nPaddingRight: 15}));
	sIFR.replaceElement("p.footer_person_title", named({sFlashSrc: "/images/pill.swf", sColor: "#ed8c01", sFlashVars: "offsetTop=1"}));
};

*/