/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
/* <![CDATA[ */
jQuery(document).ready(function(){

jQuery("#dropline li.current-menu-item").children("ul").css("left", "0px").show();

jQuery("#dropline li.current_page_parent").children("ul").css("left", "0px").show();


jQuery("#dropline li").hover(function(){

	if(this.className.indexOf("current-menu-item") == -1)  {
		getCurrent = jQuery(this).parent().children("li.current-menu-item:eq(0)");
		
		if (getCurrent = 1 ) {
			jQuery(this).parent().children("li.current-menu-item:eq(0)").children("ul").hide();
		}
		
	jQuery(this).children("ul:eq(0)").css("left", "0px").show();
	}
},

	function(){

	if(this.className.indexOf("current-menu-item") == -1)  {
		getCurrent = jQuery(this).parent().children("li.current-menu-item:eq(0)");
			
		if (getCurrent = 1 ) {
			jQuery(this).parent().children("li.current-menu-item:eq(0)").children("ul").show();
		}
		
	jQuery(this).children("ul:eq(0)").css("left", "-99999px").hide();
	jQuery("#dropline li.current_page_parent").children("ul").css("left", "0px").show();
	}	
});

});
/* ]]> */

