/* Count down */
$(document).ready(function() {
	$("#time").countdown({
		date: "June 1, 2012", 
		onChange: function( event, timer ){
		},
		onComplete: function( event ){
			$(this).html("<div class=\"txt_completed\">Completed</div>");
		},
		leadingZero: true,
		direction: "down"
	});
});

/*====== Nivo Slider =======*/
$(window).load(function() {
	 $('#slider').nivoSlider({
		  effect:'fade', // Specify sets like: 'fold,fade,sliceDown'
		  slices:10, // For slice animations
		  boxCols: 12, // For box animations
		  boxRows: 4, // For box animations
		  animSpeed:500, // Slide transition speed
		  pauseTime:5000, // How long each slide will show
	 });
});

