// JavaScript Document
$(document).ready(function(){						
	//icon hover
	$(".footer_social_icon_outer").hover(
	  function () {
		$(this).find('.footer_social_icon').stop(true,true).animate({
  			top: -7
		},200,null
		);
	  }, 
	  function () {
		$(this).find('.footer_social_icon').stop(true,true).animate({
  			top: 0
		},200,null
		);
	  }
	);	
	
	//get first video
	var url = "http://blog.blowfishshoes.com/themes/blowfish/custom_xml.php?type=youtube&jsoncallback=?";
	$.getJSON(url, function(obj) {
		for (var i=0;i<obj.bindings.length;i++) { 
			var thelink = obj.bindings[i].link;	
		}
		//$('#footer_popup_youtube_inner').html('<iframe title="YouTube Video Player" width="560" height="345" src="http://www.youtube.com/v/' + thelink + '&hl=en_US&fs=1&rel=0&color1=0x9d6fce&color2=0x9d6fce" frameborder="0" allowfullscreen></iframe>');
		
		var thelinkfull = "http://www.youtube.com/v/" + thelink + "&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x9d6fce&amp;color2=0x9d6fce";
		$('#footer_popup_youtube_inner').html('<object width="560" height="345"><param name="movie" value="' + thelinkfull + '"><embed src="' + thelinkfull + '" width="560" height="345"></embed></object>');
	});			
	
	//fb click
	$('#footer_icon_fb').click(function() {
  		hideAllFooter();
		var h=$(window).scrollTop()+$(document).height();		
		var newh = (h-648)/2;
		if (newh<0) newh=0;
		
		$('#footer_popup_facebook').css("top",newh);
		$('#footer_popup_facebook').show();
	});
	
	//twitter click
	$('#footer_icon_twitter').click(function() {
  		hideAllFooter();
		var h=$(window).scrollTop()+$(document).height();	
		var newh = (h-503)/2;
		if (newh<0) newh=0;
		
		$('#footer_popup_twitter').css("top",newh);
		$('#footer_popup_twitter').show();
	});
	
	//youtube click
	$('#footer_icon_youtube').click(function() {
  		hideAllFooter();
		var h=$(window).scrollTop()+$(document).height();		
		var newh = (h-444)/2;
		if (newh<0) newh=0;
		
		$('#footer_popup_youtube').css("top",newh);
		$('#footer_popup_youtube').show();
	});

$('.promo2').click(function(){

    hideAllFooter();
    var h=$(window).scrollTop()+$(document).height();
    var newh = (h-444)/2;
    if (newh<0) newh=0;
    $('#motm').css("top",newh);
    $('#motm').show();

})

$('.popup_close_header img').click(function() {
    
    $('#motm').hide();

}); 
	
	//hide all
	$('.popup_close_header img').click(function() {
		hideAllFooter();
	});
	
	//field email enter 
	var isEmailOpen = false;
	$('#footer_club_email_field input').keyup(function() {
		var val = $('#footer_club_email_field input').val();
		
		if (val=="") { 
			if (isEmailOpen) { 
				isEmailOpen=false;
				//$('#footer_club').hide("blind", { direction: "vertical" }, 100,function() {	});
				$('#footer_club').animate({ height: 135 }, 100,function() {	});
			}
		} else { 
			if (isEmailOpen==false) { 
				isEmailOpen=true;
				$('#footer_club').animate({ height: 297 }, 100,function() {	});
				//$('#footer_club').show("blind", { direction: "vertical" }, 100,function() {	});
			}
		}
	});
	
	//mm, dd, yyyy handlers
	$('#footer_club_dob_field_mm').focus(function(){
		var val = $(this).val();
		if (val=="MM") $(this).val("");
	});
	$('#footer_club_dob_field_mm').blur(function(){
		var val = $(this).val();
		if (val=="") $(this).val("MM");
	});
	$('#footer_club_dob_field_dd').focus(function(){
		var val = $(this).val();
		if (val=="DD") $(this).val("");
	});
	$('#footer_club_dob_field_dd').blur(function(){
		var val = $(this).val();
		if (val=="") $(this).val("DD");
	});
	$('#footer_club_dob_field_yyyy').focus(function(){
		var val = $(this).val();
		if (val=="YYYY") $(this).val("");
	});
	$('#footer_club_dob_field_yyyy').blur(function(){
		var val = $(this).val();
		if (val=="") $(this).val("YYYY");
	});	
	
});		
function hideAllFooter() { 
	$('#footer_popup_facebook').hide();
	$('#footer_popup_twitter').hide();
	$('#footer_popup_youtube').hide();
}
