$(function(){	
	$("#drop-down li").hover(
		function(){ $("ul:eq(0)", this).show(); },
		function() { $("ul", this).hide(); }
	);
	$("#drop-down li").hoverClass("hover");
	
	$("#offer-page #offer-reservation h3").text("CERERE DE REZERVARE");
	$("#offer-page #offer-reservation .submit").attr("value","TRIMITE");
	
	//$('#featured-cycle').html($('#featured-cycle').html().replace(/\n+/g, ' ').replace(/\/li>\s+<li/g, '/li><li').replace(/((<li>(([^<]|<[^/]|<\/[^l]|<\/l[^i])*)<\/li>){5})/g, '$1</div><div>'));
	
	$('ul#featured-cycle').cycle({ 
		fx:     'scrollHorz', 
		prev:   '#featured-prev', 
		next:   '#featured-next',
		nowrap:	0,
		after:   onAfter,
		timeout: 0 
	});
	
	$('div#offer-gallery a').lightBox({
		overlayBgColor: '#FFF',
		overlayOpacity: 0.6,
		imageLoading: 'http://www.agatatravel.ro/new_images/loading.gif',
		imageBtnClose: 'http://www.agatatravel.ro/new_images/close.gif',
		imageBtnPrev: 'http://www.agatatravel.ro/new_images/prev.gif',
		imageBtnNext: 'http://www.agatatravel.ro/new_images/next.gif',
		imageBlank: 'http://www.agatatravel.ro/new_images/blank.gif',
		txtImage: 'Imaginea',
		txtOf: 'din'
	});
});

function onAfter(curr, next, opts) {
	var index = opts.currSlide;
	$('#featured-prev')[index == 0 ? 'hide' : 'show']();
	$('#featured-next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}