$( document ).ready( function() {
	$( "#gallerymenu" ).click( function() {
		document.location.href = "gallery.php";
	});
	$( "#latestnewsid" ).click( function() {
		document.location.href = "/blog";
	}).css( "cursor", "pointer" );
	$( "#saltgaleryid" ).click( function() {
		document.location.href = "gallery.php";
	}).css( "cursor", "pointer" );
});