/*
 * Initiate Jquery Functions
 *
 */

//Kick-off / Page Load Functions
$(document).ready(function(){
		
	//New tab popup
	$('a[rel="external"]').attr("target", "_blank");
	
	//AutoPopulate by Andy Stratton
	$(".populate").each( function(){
		if ( $(this).val() == "" ) {
			$(this).val( $(this).attr("title") );
		}
	});
	$(".populate").focus(function(){
		if ( $(this).val() == $(this).attr("title") ) {
			$(this).val("");
		}
	});
	$(".populate").blur(function(){
		if ( $(this).val() == "" ) {
			$(this).val( $(this).attr("title") );
		}
	});
	
	$('.rocket').slideToggle("slow");
	
	//fancybox popup
	//$("a.fancybox").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300}); 

	//Cufon
	//Cufon.replace('h1');
		
	//Add last class
	//$('#tag:last-child').addClass('last');
	
	//Zebra Stripe
	//$("#tag:odd").addClass("alt");


});
