$(document).ready(function() {
  $("a#show-img").fancybox();        
	 $(".topMenuAction").click( function() {
		if ($("#openCloseIdentifier").is(":hidden")) {
		  $("#slider").animate({ 
				"height": "0px"
		}, 1000, false);
				$("#topMenuImage").html('<img src="images/plus.gif" alt="open" />');
				$("#openCloseIdentifier").show();
				$("#sliderContent").hide();	
			} else {
				$("#sliderContent").show();
        $("#slider").animate({ 
					"height": "150px"
					}, 1000, false);
				$("#topMenuImage").html('<img src="images/minus.gif" alt="close" />');
        $("#openCloseIdentifier").hide();				
			}
		});  
	});

