$(document).ready(function(){
	//GENERAL
	//tooltips
	$(".tip").tipTip();
	//LOGIN 
	$('#show-login').click(function() {
		if($('#login-block-form').css('display')=='none') {
			$('#login-block-form').css('display','block');
		} else {
			$('#login-block-form').css('display','none');
		}
	});
	/*FRONT PAGE ROLLOVERS
	$('div.studies.front a').mouseover(function() {
		var div_class = 'div.front-marketing.'+$(this).attr('rel');
		var div_content = $(div_class).html();
		$('#marketing-promo').html(div_content);
		if(!$('#marketing-promo').hasClass('active')) {
			$('#marketing-promo').addClass('active');
		}
	});
	*/
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//NAV ANIMATION
	//When mouse rolls over
	$("#nav2 li.white a").mouseover(function(){
		$(this).stop().animate({'height':60},600,'easeOutExpo');
	});
	
	//When mouse is removed
	$("#nav2 li.white a").mouseout(function(){
		$(this).stop().animate({'height':45},600,'easeOutExpo');
	});
	$('.tab-content').click(function() {
		var load_url = $(this).attr('href');
		if(!$('#tab-content').hasClass('active')) {
			$('#tab-content').addClass('active');
			$('#tab-content').hide();
			$('#tab-content').show();
		} else {
			$('#tab-content-view').html('<div class="loading-icon"><img src="images/ajax-loader.gif" alt="" /></div>');
		}
		$('#tab-content-view').load(load_url, false, function(){
			$('#tab-content-view').hide();																			
			$('#tab-content-view').fadeIn('normal');
		});
		return false;
	});
	//step 3 (shirts) custom dropdown
	if($('input#custom').attr('checked')==false) {
		$('#custom-field').hide();
	}
	$('input#custom').click(function(){
		$('#custom-field').toggle();
	});
	//FANCYBOX
	$('a.popup-content').fancybox({
		'hideOnContentClick': false
	});
	//FANCYBOX
	$('a.popup-video').fancybox({
		'hideOnContentClick': false,
		'frameWidth':660,
		'frameHeight':370
	});
	$('a.popup-form').fancybox({
		'hideOnContentClick': false,
		'frameWidth':350
	});
	$('a.popup-book').fancybox({
		'hideOnContentClick': false,
		'frameWidth':1050,
		'frameHeight':600
	});
	$('a.popup-31').fancybox({
		'hideOnContentClick': false,
		'frameWidth':700,
		'frameHeight':600
	});
});