// JavaScript Document

$(document).ready(function(){
	$("#navbar ul li").hover(
		function(){ $("ul", this).fadeIn("fast"); }, 
		function(){ $("ul", this).fadeOut("fast"); }
	);
	
	if (bRunRooster) {
		setInterval(runRooster, iJSRoosterRotationTime);
	};
	
if (document.all) {
		$("#navbar ul li").hoverClass ("sfHover");
	}
});

$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};

/* ch img */

function runRooster() {
	  $('img#home-fade-pic').fadeOut('slow', function(){
			$('img#home-fade-pic').attr('src', ''+aRoosterImagesHome[nCurrentItem0]+'');
			$('img#home-fade-pic').fadeIn('slow');
		});
	  $('img#bg-ch-modena').fadeOut('slow', function(){
			$('img#bg-ch-modena').attr('src', ''+aRoosterImagesModena[nCurrentItem1]+'');
			$('img#bg-ch-modena').fadeIn('slow');
		});
	  $('img#bg-ch-joojies').fadeOut('slow', function(){
			$('img#bg-ch-joojies').attr('src', ''+aRoosterImagesJoojies[nCurrentItem2]+'');
			$('img#bg-ch-joojies').fadeIn('slow');
		});
	  $('img#bg-ch-modish').fadeOut('slow', function(){
			$('img#bg-ch-modish').attr('src', ''+aRoosterImagesModish[nCurrentItem3]+'');
			$('img#bg-ch-modish').fadeIn('slow');
		});
     $('img#custom-fade-pic').fadeOut('slow', function(){
			$('img#custom-fade-pic').attr('src', ''+aRoosterImagesCustom[nCurrentItem4]+'');
			$('img#custom-fade-pic').fadeIn('slow');
		});
  if (nCurrentItem0 >= aRoosterImagesHome.length - 1) {
    nCurrentItem0 = 0;
  } else {
    nCurrentItem0++;
  }	  
  if (nCurrentItem1 >= aRoosterImagesModena.length - 1) {
    nCurrentItem1 = 0;
  } else {
    nCurrentItem1++;
  }
  if (nCurrentItem2 >= aRoosterImagesJoojies.length - 1) {
    nCurrentItem2 = 0;
  } else {
    nCurrentItem2++;
  }
  if (nCurrentItem3 >= aRoosterImagesModish.length - 1) {
    nCurrentItem3 = 0;
  } else {
    nCurrentItem3++;
  }
  if (nCurrentItem4 >= aRoosterImagesCustom.length - 1) {
    nCurrentItem4 = 0;
  } else {
    nCurrentItem4++;
  }
}

var iJSRoosterRotationTime = 4000;
var bRunRooster     = true;
var aRoosterImagesHome  = new Array('images/home_img/pic_home_1.jpg','images/home_img/pic_home_2.jpg','images/home_img/pic_home_3.jpg','images/home_img/pic_home_4.jpg');
var aRoosterImagesModena  = new Array('images/modena_img/img_1.jpg','images/modena_img/img_2.jpg','images/modena_img/img_3.jpg','images/modena_img/img_4.jpg');
var aRoosterImagesJoojies  = new Array('images/joojies_img/img_1.jpg','images/joojies_img/img_2.jpg','images/joojies_img/img_3.jpg','images/joojies_img/img_4.jpg','images/joojies_img/img_5.jpg');
var aRoosterImagesModish  = new Array('images/modish_img/img_1.jpg','images/modish_img/img_2.jpg','images/modish_img/img_3.jpg','images/modish_img/img_4.jpg','images/modish_img/img_5.jpg','images/modish_img/img_6.jpg');
var aRoosterImagesCustom  = new Array('images/custom_img/pic_1.jpg','images/custom_img/pic_2.jpg','images/custom_img/pic_3.jpg','images/custom_img/pic_4.jpg');
var nCurrentItem0    = 0;
var nCurrentItem1    = 0;
var nCurrentItem2    = 0;
var nCurrentItem3    = 0;
var nCurrentItem4    = 0;


function openWindow(strURL,strFeatures)
{
  window.open(strURL,'',strFeatures);
}