//**********************************************************************************************************************
/**
* COMPANY: Zipline Interactive
* EMAIL: infon@gozipline.com
* PHONE: 509-321-2849
* DESCRIPTION: This document contains programming required for the website templates.  Requires the jQuery library.
*/
//***********************************************************************************************************************


//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
$(function() {
	$("ul.dropdown li").hover(function(){
	
		$(this).addClass("hover");
		$('ul:first',this).slideDown('fast');
	
	}, function(){
	
		$('ul:first',this).slideUp('fast', function() {
			$(this).removeClass("hover");
		});
	});
	
	$("ul.dropdown li ul li:has(ul)").find("a:first").append(" &raquo; ");

});


