jQuery(document).ready(function(){
	jQuery('.deck').click(function(e){
		var url = jQuery(this).attr('rel');
		window.location.href = url;
	});
});
