/*---------------------------------
 * Initiate Jquery Functions
 *---------------------------------
 */

//Kick-off / Page Load Functions
$(document).ready(function(){
	
	//New tab popup
	$("a.popup_external").attr("target", "_blank");
	
	//New tab popup
	$("a.fancybox").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300}); 
	
	//AutoPopulate by Andy Stratton (http://www.andystratton.com/)
	$(".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") );
		}
	});
	
	//Add last class
	//$('#tag:last-child').addClass('last');
	
	//Zebra Stripe
	//$("#tag:odd").addClass("alt");


});
