$(function() {
	$('.search-box input.txt').formtips({
        tippedClass: 'tipped'
        });	
	
	// Galley Mouse Over Effects
	$('.menu-box > ul > li').mouseover(function() {
			$(this).addClass('over');
	}).mouseout(function(){
			$(this).removeClass('over');
	});
	
	//Equal Height Blocks
	equalHeight($(".top-tours li, .hotel-list li"));

});
