jQuery(document).ready(function() {
	$(".lightbox").lightbox({fitToScreen: true});
	
	$(".clickable").bind("click", function() {
		window.location = "/details/?id=" + getNumById(this.id);
	});
});

// returns last number of an ID
function getNumById(id) {
	var num = id.substring(id.lastIndexOf("-") + 1)
	return num;
}