
/* Cufon replacement configuration begins */
Cufon.replace('h2, h3, .title-1', { fontFamily: 'Helvetica LT Std', hover: 'true' });
/* Cufon replacement configuration endss */

/* Purchase Now button fadein effect begins */
$(document).ready(function () {

	//Append a div with hover class to all the LI
	$('#purchase-now li').append('<div class="hover"><\/div>');


	$('#purchase-now li').hover(
		
		//Mouseover, fadeIn the hidden hover class	
		function() {
			
			$(this).children('div').fadeIn('1000');	
		
		}, 
	
		//Mouseout, fadeOut the hover class
		function() {
		
			$(this).children('div').fadeOut('1000');	
		
	}).click (function () {
	
		//Add selected class if user clicked on it
		$(this).addClass('selected');
		
	});

});
/* Purchase Now button fadein effect ends */
/* Carousel begins */
		$(function() {
				 $(".carousel").jCarouselLite({
					  btnNext: ".next",
					  btnPrev: ".prev"
				 });
			});
/* Carousel ends */	
/* header slider begins */
		var $asj = jQuery.noConflict();
		$asj(function () {
			function formatText(index, panel) {
				var titles = new Array();titles[0+1]="1";titles[1+1]="2";titles[2+1]="3";titles[3+1]="4";titles[4+1]="5";return titles[index];	}
			$asj('.anythingSlider').anythingSlider({
				easing: "easeInOutExpo",        
				autoPlay: true,                 
				delay: 3000,    
				showStartStop: false,
				startStopped: false,            
				animationTime: 600,             
				hashTags: true,                 
				buildNavigation: true,
				pauseOnHover: true,  
				startText: "Start",            
				stopText: "Stop",              
				navigationFormatter: formatText       
			});
		});
/* header slider ends */	

