	/*SLIDER PREV/NEXT*/
	$(function() {
		$('.slides').cycle({ 
			timeout: 5000, // disable automatic transitions 
			fx: 'fade',
			prev: '#tf_prev',
			next: '#tf_next'
		});
	});
	
$(document).ready(function(){	
	$('.menu li a').each(function(){
		if($(this).height() < 30) $(this).parent().css({'padding':'13px 0px'}); //40 = 2 lines
	});
	
	$('a[href^="#fastbooking_qs"]').click(function(e){
		e.preventDefault();
		var the_id = $(this).attr("href");
		$('html, body').animate({
			scrollTop:($(the_id).offset().top)-20
		}, 'slow');
		return false;
	});

	
});



