jQuery(document).ready(function() {
	$(document).ready(function(){
	$("a[rel=group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'cyclic'			: true,
				'overlayColor'		: '#000000',
				'opacity'			: false,
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
	});
	$(".option li").click(function(){
		var className = $(this).attr('class');
		var box = className.replace("btn_","");
		$(".escort_content div").hide();
		$("."+box).fadeIn();
		$(".active").removeClass("active");
		$('span',this).addClass("active");
		$(".all").attr({ scrollTop: $(".all").attr("scrollHeight") });
		return false;
	});
	function nextIMG(){
		
	}
	$(".wr_carousel .next").click(function(){
		$('.slider ul').animate({'left': '-=100px'});
	});
	$(".wr_carousel .prev").click(function(){
		$(".slider ul").animate({"left": "+=100px"});
	});
	
}); 

