/*
Drew By Design
By Andrew Reed
 $("#Main_Inn_Image").css({
 "height":screen.height-30,
 "width":screen.width-30,
 });
*/
 $(document).ready(function(){
 $("#Menu").load("htdocs/Winter.html");
 /*if (navigator.appName == 'Microsoft Internet Explorer'){
 $("div#Main_Content").css({
	right:"15%",
	left:"15%"
 });
 }
 else{}
     $("img.Frame").animate({
		top:"150px",
		width:"10%"}, 100);
   $("img.Frame").live("hover", function(){
	    var n = $(this).queue("fx");
		if (n <= 5){
    $(this).animate({
		width:"12%"
     				}, 100);
	$(this).mouseout(function() {
    $(this).animate({
		width:"10%"
     				}, 100);
	});
	$(this).click(function() {
    $(this).animate({
		top:"150px",
		width:"10%"
     				}, 100);
	});
		}
		else{}
		});
	 */		
 $(".single_image").fancybox({
	 'transitionIn'	    :	'elastic',
	 'transitionOut'	:	'elastic',
	 'overlayColor'     :   "#fff",
	 'overlayOpacity'   :   "0.5",
	 'speedIn'		    :	600, 
	 'speedOut'		    :	200
	 });

 $("#seasons").change(function() {
	var Test = $("#seasons").val();
$("#Menu").load("htdocs/"+Test+".html");
 });
  }); //Main Close

