$(document).ready(function(){
	$(".hide_enable_link").click(function(){
		$(".hide_enable_block").slideToggle("normal");
	});
		//JQuery ready is quicker than onload
		$(".content tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
		$(".content tr:even").addClass("alt");
		
	$("#services").sudoSlider({
        numeric:true,
        fade:true,
        prevNext:false,
	    startSlide:1,
    	updateBefore:true,
        numericText:['Бронирование', 'Инструкции', 'Отели и такси']
	});
	
	$("#spec_info").sudoSlider({
		numeric:true,
		prevNext:false,
		startSlide:1,
		pause:'5500',
		auto:true
	});

	$("ul#ticker").liScroll();     	
	
	$(".pop_up_link a").fancybox({
		'titlePosition'		: 'none',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	
	$(".dot strong").click(function(){
		$(this).parent(".dot").toggleClass("active");
	})
});
var pageUpdatedEvent = function()
		{
			$(".content .pop_up_link a").fancybox({
				'titlePosition'		: 'none',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});
		};

