$(document).ready(function() {
	$('#quote_blocks').innerfade({animationtype:'fade',speed:750,timeout:8000,type:'sequence'});
	
	checkControllers();
});

$(window).resize(function() {
	checkControllers();
});

function checkControllers() {

	//if($(window).width() <= 1024) {
		// console.log($(window).width());
	//}
	
	if($(window).width() <= '1075') {
		$('#controllers').css({'display':'none'});
	} else {
		$('#controllers').css({'display':'block'});
	}
 
}
