$(function(){
	bindHomeEventFunctions();
});

function bindHomeEventFunctions() {
	
	$(".item a").click(function(event){
		event.preventDefault();
		loadContent($(this));
	});
}
