$(document).ready(function(){
						   
	$(".table1 tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".table1 tr:even").addClass("alt");
	// img style
	$('.main>img').addClass('cont_img')
	
	//photo Gallery
	$('.gal a').hover(function(){
		$(this)
		.find('img')
		.animate({opacity:'0.5'},100)	
		.animate({opacity:'1'},300)	
	},function(){})
	

	$('.slider ul').innerfade({
	animationtype: 'fade',
	speed: 1000,
	timeout: 4000,
	type: 'sequence',
	containerheight: '1em'
	});
	
	$(window).load(function(){
	
	$(".autoCarouselLite").jCarouselLite({
   	 visible: 4,
	 auto: 800,
   	 speed: 1000
	});
	
	});
	
	$(".h_menu li:not('.cur')")
		.hover(function () {
			$(this).css({backgroundPosition:'0 0'}).find('a').css({backgroundPosition:'0 0'});
		}, function () {
			$(this).css({backgroundPosition:'right -50px'}).find('a').css({backgroundPosition:'0 -50px'});
		});
		
	$(".autoCarouselLite").css({"display" : "block"});	

});






