// JavaScript Document
$(document).ready(function() {
	$('div.home').click(function() { 		
		window.location = "/" + $(this).attr('id');
	});
});
