$(document).ready(function() {
	$('#logo').bind('click', function() {
		//location.href("/");
		window.location.href = "/";
		});
	
	$('a').bind('click', function() {

		if($(this).find('img').length != 0){
			$(this).lightBox();
			return true;
		}
		else{
			window.location.href = $(this).attr("href");
		}
	});
});