// JavaScript Document
				
	$(document).ready(function(){
							   
				/*var screen_height= screen.availHeight;*/
				var screen_height= screen.height;
				/*alert(screen_height);*/
				var client = navigator.appName
				/*alert(client);*/
				var overflow_height_1= ((screen_height-700)-150) + 'px'
				var overflow_height_2= ((screen_height-700)-150) + 'px'
				/*alert(overflow_height_1);
				alert(overflow_height_2);*/
				if(client == "Netscape"){
					
					$('#overflow').css('height',overflow_height_1);	
					
				}
				else if(client == "Microsoft Internet Explorer"){
					
					$('#overflow').css('height',overflow_height_2);	
					
				}
							   
				$('#facebook_logo').hover(function(){
					$(this)
						.fadeTo("fast", 0.8);
				},function(){
					$(this)
						.fadeTo("fast", 1);
				});
				
				$('#lang-buttons a img').hover(function(){
					$(this)
						.fadeTo("fast", 0.7);
				},function(){
					$(this)
						.fadeTo("fast", 1);
				});
				
				$('#main_menu a').hover(function(){
					$(this)
						.stop()							 
						.animate({color:'#FFF'},{queue:true,duration:300});						   
				},
				function(){
					$(this)	
						.stop()							 
						.animate({color:'#000'},{queue:true,duration:300});			   
				});
				
				$('#main_menu a').click(function(){
					$('#main_menu a')
						.removeClass('white_text');
					$(this)	
						.addClass('white_text');						 
				});
				
				$('#sub_menu a').hover(function(){
					$(this)
						.stop()								 
						.animate({color:'#BBB'},{queue:true,duration:300});						   
				},
				function(){
					$(this)
						.stop()								 
						.animate({color:'#568cb2'},{queue:true,duration:300});			   
				});
				
				$('#sub_menu a').click(function(){
					$('#sub_menu a')
						.removeClass('lightgrey_text');
					$(this)	
						.addClass('lightgrey_text');						 
				});
				
				$('#detail_contents p a').hover(function(){
					$(this)
						.stop()								 
						.animate({color:'#999900'},{queue:true,duration:300});
				},
				function(){
					$(this)
						.stop()								 
						.animate({color:'#568cb2'},{queue:true,duration:300});	
				});
				
				$('#detail_contents_offers p a').hover(function(){
					$(this)
						.stop()								 
						.animate({color:'#999900'},{queue:true,duration:300});
					$(this)	
						.addClass('underlined_text');
				},
				function(){
					$(this)
						.stop()								 
						.animate({color:'#568cb2'},{queue:true,duration:300});
					$(this)	
						.removeClass('underlined_text');	
				});
				
				$('#interesting_links div p a').hover(function(){
					$(this)
						.stop()								 
						.animate({color:'#568cb2'},{queue:true,duration:300});
				},
				function(){
					$(this)
						.stop()								 
						.animate({color:'#BBB'},{queue:true,duration:300});	
				});
				
				$('#google_map small a').hover(function(){
					$(this)
						.stop()								 
						.animate({color:'#FFF'},{queue:true,duration:300});
				},
				function(){
					$(this)
						.stop()								 
						.animate({color:'#999900'},{queue:true,duration:300});	
				});
				
				$('#booking_button').hover(function(){
					$(this)
						.stop()
						.find('a')								 
						.animate({color:'#000'},{queue:true,duration:300});
					$(this)
						.stop()
						.animate({backgroundColor:'#6699cc'},{queue:true,duration:300});	
				},
				function(){
					$(this)
						.stop()
						.find('a')								 
						.animate({color:'#FFF'},{queue:true,duration:300});
					$(this)
						.stop()
						.animate({backgroundColor:'#568cb2'},{queue:true,duration:300});	
				});
				
				$('#footer p a').hover(function(){
					$(this)
						.stop()	
						.animate({color:'#568cb2'},{queue:true,duration:300});
					$(this)	
						.addClass('underlined_text');							   
				},
				function(){
					$(this)	
						.stop()								 
						.animate({color:'#999'},{queue:true,duration:300});
					$(this)	
						.removeClass('underlined_text');				   
				});
	
	});	


