$(document).ready(function(){

// SUPERFISH
	$(".sf-menu").superfish({
		pathClass: 'current',
		delay:			500,
		animation:		{opacity:'show',height:'show'},
		speed:			'fast',
		autoArrows:		false
	});
	
// SET ACTIVE MENUS
	$("#lnav li a").each(function() {
		if(this.href == window.location.href.split("#")[0]) {
			$(this).addClass("active");
			$(this).parents("li:last").addClass("current");
		}
	});
	
// ADD CLASSES
	$("li:first-child,dl:first-child").addClass("first");
	$("li:last-child,dl:first-child").addClass("last");
	$("img").filter(function(){return ($(this).css('float')=='right')}).addClass("imgr");
	$("img").filter(function(){return ($(this).css('float')=='left')}).addClass("imgl");
	
	
// DIALOG POP
	$("#dialog").dialog({
			bgiframe: true,
			height: 140,
			modal: true
		});	
		
// CLEAR SEARCH FIELD
	$("#frmSearchTerm").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});

});
// END JQUERY

// ADD SWF FILES
	var flashvars = {
	};
	var params = {
		wmode:"transparent",
		bgcolor: "#fff"
	};
	var attributes = {
	};
					
	
	
