var toggle=0;
var toggle_search=0;

$(document).ready(function() {
    $(".topMenuAction").click( function() {
        if (toggle) {
            $("#slider").animate({marginTop: "-474px"}, 500 );
            $("#topMenuImage").html('<img src="http://www.whereables.co.uk/graphics/open.png"/>');
            toggle=0;
        } else {
            $("#slider").animate({marginTop: "0px"}, 500 );
            $("#topMenuImage").html('<img src="http://www.whereables.co.uk/graphics/close.png"/>');
            toggle=1;
        }
    }); 
	
	$(".topMenuAction_search").click( function() {
        if (toggle_search) {
            $("#slider_search").animate({marginTop: "-95px"}, 500 );
            $("#topMenuImage_search").html('<img src="http://www.whereables.co.uk/graphics/search_open.png"/>');
            toggle_search=0;
        } else {
            $("#slider_search").animate({marginTop: "-8px"}, 500 );
            $("#topMenuImage_search").html('<img src="http://www.whereables.co.uk/graphics/close.png"/>');
            toggle_search=1;
        }
    });
});
