
$(document).ready(function() {
	$(".topMenuAction").click( function() {
		if ($("#openCloseIdentifier").is(":hidden")) {
			$("#slider").animate({ 
				marginTop: "-26px"
				}, 500 );
			$("#topMenuImage").html('<img src="http://images.martinluck.co.uk/www2/buttons/searchSettingsShow.png" alt="Show Search Settings" />');
			$("#openCloseIdentifier").show();
		} else {
			$("#slider").animate({ 
				marginTop: "0px"
				}, 500 );
			$("#topMenuImage").html('<img src="http://images.martinluck.co.uk/www2/buttons/searchSettingsHide.png" alt="Hide Search Settings" />');
			$("#openCloseIdentifier").hide();
		}
	});  
});