
var $o = jQuery.noConflict();

$o(document).ready(function($){
	$('#fromDate').datepicker({dateFormat:'yy-mm-dd'});
	$('#toDate').datepicker({dateFormat:'yy-mm-dd'});
	
	myFirst = Math.floor(Math.random()*$('#splashHolder li').size());
	$('#splashText').html($('#hide'+myFirst).html());
	// $('#linkMirror').attr('href',$('#featured').find('a').attr('href'));			   
	$("#splashHolder").jCarouselLite({
		visible: 1,
		speed: 1000,
		auto:4000,
		start:myFirst,
        btnNext: "#btnNext",
	    afterEnd: function(a) {
          $('#splashText').html(a.find(".hide").html());
        }
	});
});
