// JavaScript Document
function preloadImages() {
  var d=document; if(d.images){ if(!d.p) d.p=new Array();
    var i,j=d.p.length,a=preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.p[j]=new Image; d.p[j++].src=a[i];}}
}

function imgSwap(oImg)
{
   var strOver  = "_over."    // image to be used with mouse over
   var strDown = "_down."
   var strOff = "_up."     // normal image
   //var strImg = oImg.src
   var strImg = oImg.attr('src');
   if (strImg.indexOf(strOver) != -1)
      //oImg.src = strImg.replace(strOver,strOff)
      oImg.attr('src',strImg.replace(strOver,strOff))
   else if( strImg.indexOf(strDown) == -1)
      //oImg.src = strImg.replace(strOff,strOver)
      oImg.attr('src',strImg.replace(strOff,strOver))
}


function ValidateTDCEmail()
{

  if ($('#firstName').val() == "")
	{
		alert("Please enter your First Name");
	}
  else if ($('#lastName').val() == "")
	{
		alert("Please enter your Last Name");
	}
	else if(!checkMail($('#email').val()))
	{
		alert("Please enter a valid Email Address.");
	}
	else
	{
		document.tdcForm.submit();
	}

	return;


}

function checkMail(x)
{
	var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9 ]{2,4})+$/;

	if (filter.test(x))
	{
		return true;
	}
	else
	{
		return false;
	}
}


function init()
{
  preloadNav();

  $(".nav").each(
     function(i){
       $(this).hover(
         function(){
           imgSwap($(this))
         },
         function(){
           imgSwap($(this))
         }
       )
     }
  );

  $(".cart_info_msg").show();

  $(".cart_info_msg").click(function() { $(this).hide() })

  $(".action_msg").show();

  $(".action_msg").click(function() { $(this).hide() });
  
  
    
  $("form.valentinesForm #firstName").focus(function(){
    $(this).css("background", "#FFF");
    $(this).css("border", "1px solid #AAA");
  });
  
  $("form.valentinesForm #firstName").blur(function(){
    if($(this).val() == "")
    {
      $(this).css("background", "#FFF url(http://www.gabrieladelavega.com/store/sc_images/feature_valentines08/first_name.gif) 5px center no-repeat");
    $(this).css("border", "1px solid #AAA");
    }
  });
  
  $("form.valentinesForm #firstName").focus().blur();
    
  $("form.valentinesForm #lastName").focus(function(){
    $(this).css("background", "#FFF");
    $(this).css("border", "1px solid #AAA");
  });
  
  $("form.valentinesForm #lastName").blur(function(){
    if($(this).val() == "")
    {
      $(this).css("background", "#FFF url(http://www.gabrieladelavega.com/store/sc_images/feature_valentines08/last_name.gif) 5px center no-repeat");
    $(this).css("border", "1px solid #AAA");
    }
  });
  
  $("form.valentinesForm #lastName").focus().blur();
    
  $("form.valentinesForm #email").focus(function(){
    $(this).css("background", "#FFF");
    $(this).css("border", "1px solid #AAA");
  });
  
  $("form.valentinesForm #email").blur(function(){
    if($(this).val() == "")
    {
      $(this).css("background", "#FFF url(http://www.gabrieladelavega.com/store/sc_images/feature_valentines08/email_address.gif) left center no-repeat");
    $(this).css("border", "1px solid #AAA");
    }
  });
  
  $("form.valentinesForm #email").focus().blur();
}


function launchShowcase()
{
  if(typeof(window.opener)!="undefined" && window.opener)
  {
    self.close();
  }
  else
  {
     window.open("http://www.gabrieladelavega.com/");
  }
}



function preloadNav()
{

  preloadImages(

    '/store/sc_images/design/nav_necklaces_over.jpg',
    '/store/sc_images/design/nav_bracelets_over.jpg',
    '/store/sc_images/design/nav_earrings_over.jpg',
    '/store/sc_images/design/nav_special_over.jpg',
    '/store/sc_images/design/nav_showcase_over.jpg',
    '/store/sc_images/design/nav_cart_over.jpg',

    '/store/sc_images/design/nav_necklaces_up.jpg',
    '/store/sc_images/design/nav_bracelets_up.jpg',
    '/store/sc_images/design/nav_earrings_up.jpg',
    '/store/sc_images/design/nav_special_up.jpg',
    '/store/sc_images/design/nav_showcase_up.jpg',
    '/store/sc_images/design/nav_cart_up.jpg',

    '/store/sc_images/design/nav_necklaces_down.jpg',
    '/store/sc_images/design/nav_bracelets_down.jpg',
    '/store/sc_images/design/nav_earrings_down.jpg',
    '/store/sc_images/design/nav_special_down.jpg',
    '/store/sc_images/design/nav_showcase_down.jpg',
    '/store/sc_images/design/nav_cart_down.jpg',

    '/store/sc_images/frame_content/bottomFrame_special_over.jpg',
    '/store/sc_images/frame_content/bottomFrame_necklaces_over.jpg',
    '/store/sc_images/frame_content/bottomFrame_bracelets_over.jpg',
    '/store/sc_images/frame_content/bottomFrame_earrings_over.jpg',

    '/store/sc_images/frame_content/bottomFrame_special_up.jpg',
    '/store/sc_images/frame_content/bottomFrame_necklaces_up.jpg',
    '/store/sc_images/frame_content/bottomFrame_bracelets_up.jpg',
    '/store/sc_images/frame_content/bottomFrame_earrings_up.jpg'
  );

}








$(document).ready(function(){init();});