

	$(document).ready(function(){

		$("#logo").click(function(){
			window.location = "default.html";
		});

		$("DIV.panel").wrap("<div class='panel0'><div class='panel1'><div class='panel2'>" +	"<div class='panel3'></div></div></div></div>");

		$(".nav").hover(function(){
			$(this).attr({src: $(this).attr("src").replace(".png", "_hover.png") });
		},function(){
			$(this).attr({src:  $(this).attr("src").replace("_hover.png", ".png") });
		});

		$(".flag").click(function(){
			alert($(this).attr("id")+" language will be available soon. \nSorry for any inconvenience.")
		});

		// $("#sidecut IMG").attr({src: "/img/sidecuts/"+(Math.floor(Math.random()*16))+".jpg" });
		$(".topBanner").attr({src: "/img/topban/"+(Math.floor(Math.random()*9))+".jpg" });


	});



