function doDate(value){
	var url = 'http://www.exhibit3sixty.co.uk/events-calendar/'
	if(value.length > 0){
		window.location.href = url + value + '/';
	}
}

function paging(page){
	//homepage_gallery.php
	$.get("homepage_gallery.php?page=" + page, function(data){
  	document.getElementById("gallery2").innerHTML = data;
		$("#gallery2").ajaxSuccess(function(evt, request, settings){
			$('#gallery2 a.lightbox').lightBox({fixedNavigation:true});
		});
	});
}