$(function(){
	inputFodder();
	slideShow();
});

function inputFodder(){
	$('input[type="text"],textarea').addClass('input');
	$('input[type="submit"]').addClass('submit');
	$('input[name*="filter_"]').hide();
}

function slideShow(){
	var imgs = $('#fs-main img'),
	cimgs = imgs.length,
	count = 0;
	
	imgs.hide();
	imgs.eq(0).show();
	
	setInterval(function(){
		if(count<=(cimgs-1)){
			count++,
			pcount=count-1;
		}
		if(count==cimgs){
			count=0,
			pcount=cimgs-1;
		}
		imgs.eq(pcount).fadeOut();
		imgs.eq(count).fadeIn();
	},7000);
}
