// This contains all base javascript (e.g. siFR, swfobject calls, etc)

//  base.js
//  WebDevTemplate
//  
//  Created by Brandon Calloway on 2008-08-01.
//  Copyright 2008 Scully Group. All rights reserved.
// 

$(document).ready(function() {
	
	//Clear mailing list input value onclick
  $('#header-content input#newsletter').focus(function() {
    $(this).val("");
  });
  
  $("#sub-nav ul ul.tertiary li a").append("&mdash;");
  
	
  ////////////////////////////////////////////////////////////////////////////cufon call

  Cufon.replace('#header-content label');
  Cufon.replace('#navigation a', {hover:true});
  Cufon.replace('h1');
  Cufon.replace('h2');
  Cufon.replace('h3');
  Cufon.replace('p.newsletter');

  // main-nav background, first doesn't get one!
  $('#navigation ul li:first').addClass('first');
  
  // footer-nav pipes, last doesn't get one!
  // $('#footer-nav li:first').addClass('first');
  // $('#footer-nav li:last').addClass('last');
  $('#footer-nav ul.footer-top li:not(:first)').prepend('<span class="pipe">|</span>');
  $('#footer-nav ul.footer-bottom li:not(:first)').prepend('<span class="pipe">|</span>');
  
  // $(".artist-image a").addClass("fancybox");
  $(".artist-image").each(function() {
    $(".artist-image p a").attr({
      rel: "group"
    });
  });
  
  $(".artist-image").each(function() {
    $(".artist-image p a").addClass('fancybox');
  });
  
   /* This is basic - uses default settings */ 
   $("a.fancybox").fancybox({
     	'overlayOpacity'	:	0.4,
			'overlayColor'		:	'#000',
			'zoomSpeedIn'		:	500,
			'zoomSpeedOut'		:	500,
			'overlayShow'   : true, 
	    'scrolling'		:	'no'
		}); 


  ////////////////////////////////////////////////////////////////////////////swfobject call
  //  
  // var params = {
  //     menu: "false",
  //     wmode: "transparent"
  //     };
  // var attributes = {};
  // 
  // swfobject.embedSWF("/swf/player.swf", "video", "300", "250","9.0.0", "", {file:"windsculpture.flv", height:"450"}, params, attributes);

}); //end document.ready


