/*(function($) {
	$.ti = $.prototype = {
		initShow: function() {
			$.ti.travelOffersShowMore.initShow();
		}
	}
	$.ti.travelOffersShowMore = $.prototype = {
		initShow: function() {
			$('.travel-offers-more-content').hide();
			$('.travel-offers-more-link a').click(function() {
				$(this).toggleClass('active').blur().parents('.travel-offers-offer').next().slideToggle('slow');
				return false;
			});
		}
	}
	
	$(function() {
		$.ti.initShow();
	});
})(jQuery);


(function($) {
	$.ti.offers = {
		init: function() {
			alert('hello')
			$('.travel-offers-more-content').hide();
		
			$('.travel-offers-more-link a').click(function() {
				$(this).toggleClass('active').blur().parents('.travel-offers-offer').next().slideToggle('slow');
				return false;
			});
			
			$('.travel-offers-more-link a:first').click();	
			}
	}	
})(jQuery);*/

				


