// JavaScript Document
 // left menu animation
$(function(){
 	$('#nav a.link')
		.css( {backgroundPosition: "-185px 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)", paddingLeft:"45px", width:"140px" }, {duration:200})
			
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(185px 0)", paddingLeft:"30px", width:"155px" }, {duration:200, complete:function(){
				$(this).css({backgroundPosition: "-185px 0"})
			}})
		})
 });

// lang menu animation
$(function(){
 	$('#nav1 a')
		.css( {backgroundPosition: "0 7px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(5px 7px)"}, {duration:30})
 		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 7px)"}, {duration:30})
		})
 });

 // right  menu gallery animation
$(function(){
 	$('.rgallery a')
		.css( {backgroundPosition: "15px 7px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(5px 7px)"}, {duration:30})
 		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(15px 7px)"}, {duration:30})
		})
 });
 // packets  menu gallery animation
$(function(){
 	$('.packages a')
		.css( {backgroundPosition: "15px 7px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(5px 7px)"}, {duration:30})
 		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(15px 7px)"}, {duration:30})
		})
 });
 // right panel loading animation
$(function(){
jQuery(document).ready(function($) {
$("#rp").animate({ left: "-272" }, {duration:500}) 
  	})
  });

// bottom panel loading animation
$(function(){
jQuery(document).ready(function($) {
     $("#bp").animate({ top: "0"}, {duration:500}) 
	 
 	})
  });
  
// bottom panel image hover animation  
 $(function(){
 	$('.b1 a img')
 
 		.mouseover(function(){
			$(this).stop().animate({width: "76px", height:"60px", marginTop:"2px", marginLeft:"2px"}, {duration:10})
			
		})
		.mouseout(function(){
			$(this).stop().animate({width: "80px", height:"64px", marginTop:"0px", marginLeft:"0px"  }, {duration:10})
		})
 });
 $(function(){
 	$('.b1 li.service a img')
 
 		.mouseover(function(){
			$(this).stop().animate({width: "48px", height:"57px", marginTop:"2px", marginLeft:"1px"}, {duration:10})
			
		})
		.mouseout(function(){
			$(this).stop().animate({width: "52px", height:"61px", marginTop:"0px", marginLeft:"0px"  }, {duration:10})
		})
 });
 
 $(function(){
 	$('li.restaurant a img')
 
 		.mouseover(function(){
			$(this).stop().animate({width: "50px", height:"38px", marginTop:"2px", marginLeft:"2px"}, {duration:10})
			
		})
		.mouseout(function(){
			$(this).stop().animate({width: "54px", height:"42px", marginTop:"0px", marginLeft:"0px"  }, {duration:10})
		})
 });
 
 // tabs spa prices
  
