// JavaScript Document

$(window).load(function() {
    // run this when the whole page has been downloaded
	
	$("#slider").animate({ 
					marginTop: "-170px"
					}, 900 );
				$("#openCloseIdentifier").hide();
	
	
	
});
	

	$(document).ready(function() {
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider").animate({ 
					marginTop: "-24px"
					}, 200 );
				$("#openCloseIdentifier").show();
			} else {
				$("#slider").animate({ 
					marginTop: "-170px"
					}, 500 );
				$("#openCloseIdentifier").hide();
			}
		});  
	});
	