// ROLLOVER JS
//By TheArteFacT alias Zoltan Csordas @dotcom.lu

 $(document).ready(function(){
   $("a.logo").mouseover(function(event){
     $(this).css("background-position","bottom  center");
	 //alert('hover');
   });
   $("a.logo").mouseout(function(event){
     $(this).css("background-position","top center") ;
	 //alert('out');
   });
 });

