jQuery(document).ready(function($){

	
	// initialize superfish nav bar with drop downs
	jQuery('#topnav').supersubs({minWidth:10,maxWidth:100,extraWidth:1}).superfish();
	
	// Remove border from last li
	$('#topnav li:last a').css('border-right','0');
	
	// force target="_blank" equivalent
	$('a[rel="external"]').click(function(){
		window.open(this.href);
		return false;
	});
	
});

jQuery(window).load(function(){
	// Put reCaptcha on pages where applicable
	if(jQuery('#reCaptcha').length > 0) {
		Recaptcha.create("6Lfrsb8SAAAAAAMX3gU3vgJRF7vMH6KoQOyHYrgr ", "reCaptcha",{theme: "white",callback: Recaptcha.focus_response_field});
	}
});
