
$(document).ready(function(){
						   
	// UI TABS
	//$("#content > #excl_nav").tabs({ fx: { height: 'toggle', opacity: 'toggle', duration: 'normal' } });
	
	$('a[@rel*=lightbox]').lightBox();
	$('.lightbox').lightBox();

	$(".alert").animate({ height:'show', opacity:'show' }, 'slow');
	
	$('a[@rel=external]').attr('target', '_blank');
	$('.blank').attr('target','_blank');
	$("a[@href^='http']").attr('target','_blank');
	
	$('.rellink').bind('click', function() {
		if (typeof($(this).attr('rel'))!="undefined") {
			location.href = $(this).attr('rel');
		}
	});
	
	$('#overlay').click(function (){
		$(this).hide();
		$('#flyer').hide();		
	});
	
	$('.close_flyer').click(function (){
		$('#overlay').hide();
		$('#flyer').hide();		
	});

});


$(window).load(function () {




});
