$(document).ready(function(){
	$(".section div").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	$('.section div').hover(function() {
		$(this).addClass('pretty-hover');
	}, function() {
		$(this).removeClass('pretty-hover');
	});
});

// facebox
jQuery(document).ready(function($) {
	$('a[rel*=facebox]').facebox({
		loading_image : 'loading2.gif',
		close_image   : 'closelabel.gif'
	}) 
})
