$(function() {
		   
	$(".png").supersleight();

	$("a").click(function(){
		var href = $(this).attr("href");
		if(href == "#"){
			return false;
		}
	});
	
	// set footer ul's width to make it centered
	var footerWidth = 0;
	$("#footer ul li").each(function(){
		varFooterLiWidth = $(this).outerWidth();
		footerWidth = footerWidth + varFooterLiWidth;
	});
	$("#footer ul").css({"width": footerWidth+"px"});
	
	$("ul#navigation li a").hover(function(){
		$(this).stop().parent().addClass("hover");
	},function(){
		$(this).stop().parent().removeClass("hover");
	});

});
