/*
 * Initiate Jquery Functions
 *
 */

//Kick-off / Page Load Functions
$(document).ready(function(){
		
	//New tab popup
	$('a[rel="external"]').attr("target", "_blank");
	
	//Current Nav State
	var path = location.pathname.substring(1);
	if ( path )
		$('ul.navigation li a[href$="' + path + '"]').parent().addClass("current_page_item");

	//AutoPopulate by Andy Stratton (http://www.theandystratton.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") );
		}
	});
	
	//Fancybox Popup
	$("a.screenshot_large").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300,'autoScale' : false, 'overlayColor' : '#042D10'  }); 
	
	//Cufon
	/*
	Cufon.replace('h1');
	Cufon.replace('#sidebar h4');
	Cufon.replace('#footer p.phone');
	*/

});
