(function($) {
$(function(){	
      $('#searchRe .sortBy ul li:gt(1)').hover(function() {
    	  $(this).addClass('cross');
    	  $(this).nextAll().andSelf().addClass('bcHover');
      }, function() {
      	$(this).removeClass('cross');
    	$(this).siblings().andSelf().removeClass('bcHover');
    });
});
})(jQuery);

//############ Hotels Image Loader - Also in utilities.js ########################
function checkExternalImageLoaded() {
	(function($) {
		$(".hotels img").load(function(){
			$(".hotels img").addClass('validImg');
		});
	})(jQuery);
}
