$(document).ready(function(){

  // generateSprites arguments: 
  // 1st - parent class (the main class on the parent ul), with preceding period
  // 2nd - selected prefix (eg. for a selected class of "selected-about", use "selected-" as the value)
  // 3rd - :active state toggle, set to true if you've defined :active states (and the jQuery equivalent) in your CSS
  // 4th - animation speed, in milliseconds (eg. 300 = 0.3 seconds)
  // 5th - animation style, as a string. Set to "slide" or "fade" (defaults to "fade")
  // example usage:
  // generateSprites(".navigation", "selected-", true, 300, "fade");
  // generateSprites(".top-nav", "position-", true, 200, "slide");
  // generateSprites(".sidebar-nav", "current-", false, 150, "fade");
  generateSprites(".nav", "current-", true, 150, "slide");

  $(".icon-chat").click(function() {
	window.open( 'http://firstchoicecapital.com.au/livechat' ,this,'width=270,height=380' );
	return false;
  });

  $(".email-field").focus(function() {
	if ($(this).val()=='Enter email address') {
      $(this).attr('value', '');
	}	
  });

  $(".email-field").blur(function() {
	if ($(this).val()=='') {
      $(this).attr('value', 'Enter email address');
	}	
  });

  $("#subscribe-form").submit(function() {
	if ($("#email-field").val()=='' || $("#email-field").val()=='Enter email address') {
	  alert("Please enter a valid email address");
	  return false;
	} else {
	  return true;
	}
  });

  $('#standard-variable-rate-link').fancyZoom({width:400, directory:'http://firstchoicecapital.com.au/images/fancyzoom'});
  $('#offset-account-link').fancyZoom({width:400, directory:'images/fancyzoom'});
  $('#basic-variable-rate-link').fancyZoom({width:400, directory:'images/fancyzoom'});
  $('#fixed-rate-link').fancyZoom({width:400, directory:'images/fancyzoom'});
  $('#combination-or-split-rate-link').fancyZoom({width:400, directory:'images/fancyzoom'});
  $('#non-conforming-and-lo-doc-link').fancyZoom({width:400, directory:'images/fancyzoom'});
  $('#home-equity-link').fancyZoom({width:400, directory:'images/fancyzoom'});


});

