// JavaScript Document
$(document).ready(function() {
		$("#slider2").animate({
				marginTop: "70px"
				}, 1000 );
				$("#topMenuImage").html('<img src="images/close.png" alt="close" />');
				$("#openCloseIdentifier").hide();
				
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider2").animate({ 
					marginTop: "19px"
					}, 500 );
				$("#topMenuImage").html('<img src="images/open.png" alt="open" />');
				$("#openCloseIdentifier").show();
			} else {
				$("#slider2").animate({ 
					marginTop: "70px"
					}, 500 );
				$("#topMenuImage").html('<img src="images/close.png" alt="close" />');
				$("#openCloseIdentifier").hide();
			}
		});  
	});
	
