$(document).ready(function () {
	current_image = "plus";
    $('img.menu_class').click(function () {
		$('ul.the_menu').slideToggle('medium');
		
		// Alternate image
		if(current_image == "plus"){
			current_image = "minus";
			document.getElementById("menu_image").src = "/wp-content/themes/photoscroll/images/logo_minus.png";
		}else{
			current_image = "plus";
			document.getElementById("menu_image").src = "/wp-content/themes/photoscroll/images/logo_plus.png";
		}
    });
	
	// Over
	$('img.menu_class').mouseover(function () {
		if(current_image == "minus"){
			document.getElementById("menu_image").src = "/wp-content/themes/photoscroll/images/logo_minus-over.png";
		}else{
			document.getElementById("menu_image").src = "/wp-content/themes/photoscroll/images/logo_plus-over.png";
		}
    });
	 
	// Out
	$('img.menu_class').mouseout(function () {
		if(current_image == "minus"){
			document.getElementById("menu_image").src = "/wp-content/themes/photoscroll/images/logo_minus.png";
		}else{
			document.getElementById("menu_image").src = "/wp-content/themes/photoscroll/images/logo_plus.png";
		}
    });
	 
	 
});