$(document).ready(function() {
	
	// compliant new window code
	$('a[rel="external"]').attr('target', '_blank');
	$('#addFav').jFav();
	
	// header promo panel
	$('#promo-slideshow').after('<div id="promo-slideshow-nav"></div>').cycle({ 
		fx:     'fade', 
		speed:  1000, 
		timeout: 7000, 
		pager:  '#promo-slideshow-nav',
		pause: 1 
	});
	
	// disbles right-click on images
	$('img').bind("contextmenu", function(e){ return false; });
	
	// fancybox
	$("a.fancy-image").fancybox();
	
	// video section tabs
	$(".video-list-tabs li a").click(function(){
		$(".video-list-tabs li a").removeClass('selected'); // kill selected tab state
		$("ul.video-list").hide(); // hide all video thumbs
		$(this).addClass('selected'); // highlight current tab
		var current_video_section = $(this).attr('href'); // grab the section to show
		$("ul#"+current_video_section).fadeIn('fast'); // show the current section
		//do the omniture on the selected tab
		s=s_gi(s_account);
		s.linkTrackVars='prop27';
		s.prop27 = $(this).html().toLowerCase();
		s.tl(this, 'o', 'Video Tab Clicks');
		return false;
	});
	
	// form placeholder text removal
	$('form input').focus(function(){
		if($(this).val() == "Email Address" || $(this).val() == "Zip Code"){
			$(this).val('');
		}
	});
	
	// ------------------------------------
	// OMNITURE
	// ------------------------------------
	if($('.specialTrack').length > 0){
		$('.specialTrack').click(function(){
			s=s_gi(s_account);
			s.linkTrackVars='prop26';
			specialName = $(this).attr('rel');
			s.prop26=specialName.toLowerCase();
			s.tl(this, 'o', specialName.toLowerCase());
		
		});
	 }
	
});
