/*---------- QUICKBOOK SLIDER SCRIPT ----------*/
<!--$(document).ready(function() {-->
<!--		$("#slider").hover( function() {-->
<!--		{	-->
<!--				if($("#slider").css("margin-top") == "0px"){-->
<!--				$("#slider").animate({ -->
<!--					marginTop: "-224px"-->
<!--					}, 500 );-->
<!--				$("#topMenuImage").html('<img src="includes/imgs/close-bookings.gif" alt="close" />');-->
<!--				$("#openCloseIdentifier").hide();-->
<!--				}-->
<!--		}-->
<!--			-->
<!--		}, $("#topMenuImage").click(function(){-->
<!--			if ($("#openCloseIdentifier").is(":hidden")) {-->
<!--				$("#slider").animate({ -->
<!--					marginTop: "0px"-->
<!--					}, 500 );-->
<!--				$("#topMenuImage").html('<img src="includes/imgs/open-bookings.gif" alt="open" />');-->
<!--				$("#openCloseIdentifier").show();-->
<!--				}-->
<!--		-->
<!--		}));  -->
<!--	});-->
/*---------- CONTENT SLIDER SCRIPT ----------*/
$(document).ready(function() {
			var IEversion = navigator.appVersion;
			if(navigator.appName == "Microsoft Internet Explorer")
			{

				
				if(IEversion.indexOf('MSIE 8.0') == -1)
				{
					$("#slider2").css({'margin-top' : '326px'});
				}
				else{
					$("#slider2").css({'margin-top' : '347px'});
				}
			}
			else{
				$("#slider2").css({'margin-top' : '347px'});

			}
			
				$(".topMenuAction2").click(function(){
					if($("#slider2").css("margin-top") == "0px"){
						if(navigator.appName == "Microsoft Internet Explorer")
						{
							if(IEversion.indexOf('MSIE 8.0') == -1)
							{
								$("#slider2").css({'margin-top' : '326px'});
							}
							else{
								$("#slider2").css({'margin-top' : '347px'});
							}
						}
						else{
							$("#slider2").animate({marginTop:"347px"}, 500);

						}
						$("#topMenuImage2").html('<img src="includes/imgs/open-content.gif" alt="open" />');
					}
					else{
						$("#slider2").animate({marginTop:"0px"}, 500);
						$("#topMenuImage2").html('<img src="includes/imgs/close-content.gif" alt="open" />');
					}
				});
			

	});