 $(document).ready(function(){
 
    $("#bottles img").hover(function(){
     $("#intro").hide();
   },function(){
 	 $("#intro").show();
   });   
   
   $("#bottles_list #botg_bottle").hover(function(){
   	 $("#botg_bottle img").css('width', '89px');
   	 $("#botg_bottle img").css('margin-top', '-20px');
   	 $("#botg_bottle img").css('margin-left', '-5px');
     $("#botg").fadeIn();
   },function(){
   	 $("#botg_bottle img").css('width', '79px');
  	 $("#botg_bottle img").css('margin-top', '0px');
   	 $("#botg_bottle img").css('margin-left', '0px');
   	 $("#botg").hide();
   });
   
    $("#bottles_list #purity_bottle").hover(function(){
     $("#purity_bottle img").css('width', '89px');
     $("#purity_bottle img").css('margin-top', '-20px');
	 $("#purity_bottle img").css('margin-left', '-5px');

     $("#purity").fadeIn();
   },function(){
     $("#purity_bottle img").css('width', '79px');
     $("#purity_bottle img").css('margin-top', '0px');
	 $("#purity_bottle img").css('margin-left', '0px');
   	 $("#purity").hide();
   });
 
    $("#bottles_list #hubb_bottle").hover(function(){
     $("#hubb_bottle img").css('width', '89px');
   	 $("#hubb_bottle img").css('margin-top', '-20px');
	 $("#hubb_bottle img").css('margin-left', '-5px');
     $("#hubb").fadeIn();
   },function(){
     $("#hubb_bottle img").css('width', '79px');
     $("#hubb_bottle img").css('margin-top', '0px');
     $("#hubb_bottle img").css('margin-left', '0px');
   	 $("#hubb").hide();
   });
 
    $("#bottles_list #beast_bottle").hover(function(){
     $("#beast_bottle img").css('width', '89px');
   	 $("#beast_bottle img").css('margin-top', '-20px');
   	 $("#beast_bottle img").css('margin-left', '-5px');
     $("#beast").fadeIn();
   },function(){
     $("#beast_bottle img").css('width', '79px');
     $("#beast_bottle img").css('margin-top', '0px');
     $("#beast_bottle img").css('margin-left', '0px');
   	 $("#beast").hide();
   });
 
    $("#bottles_list #holiday_bottle").hover(function(){
     $("#holiday_bottle img").css('width', '89px');
   	 $("#holiday_bottle img").css('margin-top', '-20px');
   	 $("#holiday_bottle img").css('margin-left', '-5px');
     $("#holidays").fadeIn();
   },function(){
     $("#holiday_bottle img").css('width', '79px');
     $("#holiday_bottle img").css('margin', '0px');
   	 $("#holidays").hide();
   });
 });