	$(document).ready(function() {
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":visible")) {
				$(".slideTemplate").animate({ 
					top: "0px"
					}, 500 );
				$("#topMenuAction").html('<img src="images/home_slider/open.png" alt="close" />');
				$("#openCloseIdentifier").hide();
			} else {
				$(".slideTemplate").animate({ 
					top: "230px"
					}, 500 );
				$("#topMenuAction").html('<img src="images/home_slider/close.png" alt="open" />');
				$("#openCloseIdentifier").show();
			}
		});  
	});


