//Scripts

$(document).ready(function(){
 
	$("#footer_wp").mouseover(function () {
      $("#footer_wp_img")
      .animate({marginTop:"0px"}, 400);});
  
  	$("#footer_xk").mouseover(function () {
      $("#footer_xk_img")
      .animate({marginTop:"0px"}, 400);});
	
	$("#footer_wp").mouseout(function () {
      $("#footer_wp_img")
      .animate({marginTop:"10px"}, 200);});
  
  	$("#footer_xk").mouseout(function () {
      $("#footer_xk_img")
      .animate({marginTop:"10px"}, 200);});

	$("#menu .page_item").mouseover(function () {
		$(this).fadeOut("fast")
		$(this).fadeIn("fast");
						
    });
	$("#menu .page_item").mouseout(function () {
		$(this).show();
						
    });
  });
  
 