$(document).ready(function() {
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider").animate({ 
					marginTop: "-182px"
					}, 500 );
				$("#topMenuImage").html('<img src="http://localhost/kele_blog/wp-content/themes/Marko/images/open.png" alt="Otvori" title="Otvori" />');
				$("#openCloseIdentifier").show();
			} else {
				$("#slider").animate({ 
					marginTop: "0px"
					}, 500 );
				$("#topMenuImage").html('<img src="http://localhost/kele_blog/wp-content/themes/Marko/images/close.png" alt="Zatvori" title="Zatvori" />');
				$("#openCloseIdentifier").hide();
			}
		});  
	});
