/*function contentSlide_initCallback(carousel){
	jQuery('ul.menu li').hover(
		function() {
			carousel.stopAuto();
		},
		function() {
			carousel.startAuto();
		}
	);	
};*/

function printDate() {
  var today = new Date();
  var day=today.getDate();
  var month = today.getMonth() + 1;
  //var year = today.getFullYear().toString();
  var box=document.forms[0].DateBox;//this is where we want to print the date
  if ( ( month /10 ) < 1 )
  {
    month=("0" + month).toString(); //add the leading 0 -- looks more professional
  }
  if ( (day/10)<1)
  {
    day=("0" + today.getDate()).toString();//add the leading 0 -- looks better
  }
  box.value=day + "/" + month;
};

function printTime() {
  var box = document.forms[0].TimeBox; //this is where we want to print the date
  var thetime=new Date();
  if (thetime.getMinutes() / 10 <1 )
  {
    box.value=thetime.getHours() + ":" + "0" + thetime.getMinutes() + "HS |";
  }
  else
  {
    box.value=thetime.getHours() + ":" + thetime.getMinutes() + "HS |";
  }
};

jQuery(document).ready(function() {
	printTime();
	printDate();
    jQuery('ul.menu li').hover(
		function() {
			jQuery(this).children('a').addClass('active');
		},
		function() {
			jQuery(this).children('a').removeClass('active');
		}
	);	    
	jQuery('#txtCarousel').jcarousel({
		vertical: true,
		scroll: 1
	});	
});
