$(document).ready(function() {
	$("#marge").css("paddingTop",(300-$("#text_t").height())/2  );
	
	$("a#f").mouseenter(function() {
	    $("a#fashion").css("background-position","0px -184px");
	  }).mouseleave(function() {
		  $("a#fashion").css("background-position","0px -0px");
	  });
	
	$("a#a").mouseenter(function() {
	    $("a#art").css("background-position","0px -184px");
	  }).mouseleave(function() {
		  $("a#art").css("background-position","0px -0px");
	  });
	
	$("a#n").mouseenter(function() {
	    $("a#news").css("background-position","0px -184px");
	  }).mouseleave(function() {
		  $("a#news").css("background-position","0px -0px");
	  });
	
	$("a#c").mouseenter(function() {
	    $("a#contact").css("background-position","0px -184px");
	  }).mouseleave(function() {
		  $("a#contact").css("background-position","0px -0px");
	  });
	
	$("a#fashion").mouseenter(function() {
	    $("a#f img").css("border-bottom","solid #919191 1px");
	  }).mouseleave(function() {
		  $("a#f img").css("border-bottom","solid #919191 0px");
	  });
	$("a#art").mouseenter(function() {
	    $("a#a img").css("border-bottom","solid #919191 1px");
	  }).mouseleave(function() {
		  $("a#a img").css("border-bottom","solid #919191 0px");
	  });
	$("a#news").mouseenter(function() {
	    $("a#n img").css("border-bottom","solid #919191 1px");
	  }).mouseleave(function() {
		  $("a#n img").css("border-bottom","solid #919191 0px");
	  });
	$("a#contact").mouseenter(function() {
	    $("a#c img").css("border-bottom","solid #919191 1px");
	  }).mouseleave(function() {
		  $("a#c img").css("border-bottom","solid #919191 0px");
	  });

	
	$("div#content a").mouseenter(function() {
	    $(this).css("background-position","0px -184px");
	  }).mouseleave(function() {
		  $(this).css("background-position","0px -0px");
	  });
	
	$("div#menu ul li a img").mouseenter(function() {
	    $(this).css("border-bottom","solid #919191 1px");
	  }).mouseleave(function() {
		  $(this).css("border-bottom","solid #919191 0px");
	  });

});
