$(document).ready(function() {
	$('button').click(function() {
	x = $('li.gallery-select').length;
	x = $('li.gallery-select').attr('id'); // gets current gallery id
	x = $('li.gallery-select').parent().parent().attr('id'); // gets current category id
	x = $('li.menu-select').attr('id'); // gets current menu id (NB mm12)
	
	
	x = document.URL;
	x = x.split('#');
	x = x[1];
	
	alert( x );
		//alert("I am running");
	});
});
