// When the DOM is ready
$('document').ready(function(){
	$("#hnt-list").liScroll({travelocity: 0.04});
	
	/* -- ADVERTISEMENT */
	
	// If an ad is present
	if($('#ad-fancybox').length > 0 && $('#ad').length > 0) {
		// Get the ad content div:
		var $ad = $($('#ad-fancybox').attr('href'));

		// Hide it by default
		$ad.hide();

		// Activate the fancybox:
		$('#ad-fancybox').fancybox({
			scrolling : 'no',
			onStart : function() {
				$ad.show();
			},
			onClosed : function() {
				$ad.hide();
			}
		});
		$('#ad-fancybox').trigger('click');
		
		// If the link is clicked that has to trigger the fancybox
		$('#trigger-ad').click(function() {
			// Show it
			$('#ad-fancybox').trigger('click');
			
			// Prevent default link functionality
			return false;
		});
	}
	
});
