$.include('includes/classes/GaleriaFotos/files/jcarousellite_1.0.1.min.js',function(){
	
});

var GaleriaFotos={
	init:function(id){
		$('#'+id)
			.find('.BT_prev')
				.bind('mouseover',
					function(){
						$(this).addClass('hover');
					}
				)
				.bind('mouseout',
					function(){
						$(this).removeClass('hover');
					}
				)
		;
		$('#'+id)
			.find('.BT_next')
				.bind('mouseover',
					function(){
						$(this).addClass('hover');
					}
				)
				.bind('mouseout',
					function(){
						$(this).removeClass('hover');
					}
				)
		;
		
		if($('#'+id+' .fotos .foto').length>5){
			$('#'+id+' .fotos').jCarouselLite({
				btnNext: ".BT_next",
				btnPrev: ".BT_prev",
				circular: true,
				scroll: 1,
				mouseWheel: true,
				speed: 300
			});
		}
	}
};
