//<![CDATA[
		   
$(document).ready(function(){
	//Adds class to body to confirm JS is enabled (used in CSS)
	$('body').addClass("jsenabled");
	//Enables Suckerfish drop-down menus
	$("ul.sf-menu").superfish({ 
		hoverClass: 'sfHover',
    	pathClass: 'current',
		dropShadows: false,
		autoArrows: false
    });
	//Adds Faceboxes
	//$('a[rel*=facebox]').facebox();
	//Clears inital form field values on focus	
	$(".clearonfocus").focus(function() {
		if(this.value == this.defaultValue) {
			this.value = "";
		}
	}).blur(function() {
		if(!this.value.length) {
			this.value = this.defaultValue;
		}
	});
	//Launch links in new window where rel="popup"
	$('a[rel~=external]').click(function(){
		window.open(this.href);
		return false;
	});
	//Stripe tables
	//$('tr:nth-child(odd)').addClass('odd');
	//Homepage Functions
	if ($('#home').length > 0) {
				
	}
});
//]]>
