$(document).ready(function(){
	$(window).bind('resize.awards',function() {
		if($(window).width() < 1190){
			$('#award').stop(true).animate({ opacity:0 }, 300);
		}else{
			$('#award').stop(true).animate({ opacity:1 }, 300);
		}
	});
});


