$(document).ready(function(){
	$("#headlines-wrapper.carousel").jCarouselLite({
	    btnNext: ".next",
	    btnPrev: ".prev",
	    btnPlay: "#headlines-wrapper .play",
	    btnGo: ['.go-buttons .0', '.go-buttons .1',
	    		'.go-buttons .2', '.go-buttons .3',
	    		'.go-buttons .4', '.go-buttons .5',
	    		'.go-buttons .6'],	    
	    wrap: 'last',
	    circular: true,
	    visible: 1,
	    speed: 1000,
	    auto: 3000,
	    startAgain: false,
	    beforeStart: function(){
	    	$("#front-recent li").eq(getCurrItem()).removeClass('currItem');
	    },	    
	    afterEnd: function(){
	    	$("#front-recent li").eq(getCurrItem()).addClass('currItem');	    	
	    }
	});
	
	function getCurrItem(){
		var c = $("div.go-buttons span.currItem").html() - 1; 
		return (c < 0) ? 0 : c;	
	}
	
	$("#headlines-wrapper .play").toggle(
		function(){$(this).removeClass('pause')},
		function(){$(this).addClass('pause')});

	$('select#quantity1').change(function(){
		var i = this.selectedIndex;
		var amount = (i*(75.00));
		$('input#UMamount').val(amount.toFixed(2));
	});
	
	$('ul.additional-thumbs a').fancybox({titleShow:false});
	
	$('#magazine a').fancybox({titleShow:false});
});
