/**************************************************************************
 * Home Class.
 *************************************************************************/

 var Home = {
	init: function() {
		$(window).resize(function(){
			Home.resize();
		});
		
		Home.resize();
	},
	
	
	resize: function() {
		var width = $(document).width();
		if (width <= 920) {
			$('ul.column a.image').hide();			
		} else {
			$('ul.column a.image').show();

		}
	}
}