﻿$(document).ready(function() {
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider2").animate({ 
					marginTop: "-50px"
					}, 500 );
				$("#topMenuImage").html('<img src="http://www.hollandevenementengroep.nl/images/open1.png" title="Check meer!" width="260px" height="40px" />');
				$("#openCloseIdentifier").show();
			} else {
				$("#slider2").animate({ 
					marginTop: "0px"
					}, 500 );
				$("#topMenuImage").html('<img src="http://www.hollandevenementengroep.nl/images/close1.png" width="260px" height="40px" />');
				$("#openCloseIdentifier").hide();
			}
		});  
	});
