$(document).ready(function() {

	$('#btnshoppermenu').click(function() {
		 $('#shoppermenu').toggle();
	});

	$('#closeshoppermenu').click(function(event) {
		event.preventDefault();
		$('#shoppermenu').toggle();
	});
	
	
});
