
$(document).ready(function(){

	/////////////////////////////////////////////////////////  Slideshow

	function slideshow(i){
		t = $('#slides ul li').length-1;
		$('#slides ul li:eq('+ i +')').fadeTo(1000,1,function(){
			$(this).find('div').delay(1000).fadeIn(400);
			if (i!=t){ i++; } else { i = 0; }
			$(this).fadeTo(10000,1,function(){
				$(this).fadeOut(400);
				$(this).find('div').fadeOut(400,function(){
					slideshow(i);
				});
			});
		});
	}
	slideshow(0);

	/////////////////////////////////////////////////////////  Init Zoom

	var options = {  
				zoomType:'standard',  
				lens:true,  
				preloadImages:true,  
				alwaysOn:false,  
				zoomWidth:150,  
				zoomHeight:250,
				alwaysOn:true 
			};
			
	$('.zoom').jqzoom(options); 
	$('.zoomWindow').css('marginTop','-1px')

  	/////////////////////////////////////////////////////////  Init Typeface JS

	_typeface_js.initialize();

});
