/**
 * @author npatil
 */

(function($){
	$(document).ready(function(){
		$(".bannerrotator").each(function(bannerRotatorIndex){
			var bannerRotator = $(this);

			//DELETE the cookie .... used for testing
			//$.cookie(bannerRotatorId, null);

			var imgRows = $("div.csc-textpic div.csc-textpic-imagewrap div.csc-textpic-imagerow",bannerRotator);
			var imgRowSize = imgRows.size();

			if (imgRowSize>1) {

				var bannerRotatorId = bannerRotator.attr('id');
				var randomImgRow = null; // $.cookie(bannerRotatorId);
	
				if(randomImgRow==null || Number(randomImgRow)<0 || Number(randomImgRow)>=imgRowSize){
					randomImgRow = Math.round( Math.random() * ( imgRowSize - 1 ) );
					// $.cookie(bannerRotatorId, randomImgRow);
				}
	
				imgRows.each(function(imgRowIndex){
					if (imgRowIndex!=Number(randomImgRow)) {
						 $(this).hide();
					}
				})
			}
		});
	});
})(jQuery);
