// JavaScript Document

// ------------------------------------------------

//	Zebra Efects

// ------------------------------------------------
$(function(){
	$("table.zebraefect tr:nth-child(even)").addClass("zebra");
});

$(function(){
	$("ul.zebraefect li:nth-child(even)").addClass("zebra");
});


// ------------------------------------------------

//	banner Efects

// ------------------------------------------------
$(function(){
	$(".mainBannerArea").each(function(){
		$(".caption",this).animate({top:20}, 0);
		
		$(this).hover(function(){
			$(this).children(".caption",this).stop().animate({top:0}, 300);
		},function () {
			$(this).children(".caption",this).stop().animate({top:20}, 100);
		});
	});
});


