if(typeof jQuery !== "undefined") {
	jQuery.noConflict();
	jQuery(document).ready(function($) {
		// add js class
		$('body').addClass('js');
		// make entire homepage box clickable
		$('#mainContent .hbox').click(function() {
			window.location = ($(this).find('.more a').attr('href'));
		});
		$('#mainContent .hbox').css({ 'cursor':'pointer' });
	});
}
