$(document).ready(function(){
	if(document.location.href.indexOf("?nof")==-1){
		
	}
	if(document.location.href.indexOf("?nof")==-1){
		$('img.blank:eq(0)').fadeOut(400);
	}else{
		$('img.blank:eq(0)').hide();
	}
	
	var current_image=1;
	function sequence() {
		if (current_image >= $('img.blank').length-1) {
			clearInterval(int);
		}
		if(document.location.href.indexOf("?nof")==-1){
			$('img.blank:eq('+current_image+')').fadeOut(400);
		}else{
			$('img.blank:eq('+current_image+')').hide();
		}
		current_image++;
	}
	var int = setInterval(sequence,400);
})
