// Expand Menu
;(function($) {
	$.fn.extend({

		expand: function(options) {

			return this.each(function() {
				$(this).hover(function(e){
					var position = $(this).position();

					mItem = $(this).find('.secNav').eq(0)/*.css({left: position.left})*/.show();
					$(this).children("a:first").addClass("on");
					$('input[type="text"]').blur();
				},
				function(e){

					mItem = $(this).find('.secNav').eq(0).hide();
					$(this).children("a:first").removeClass("on");
				});
			});
		}
	});
	
	
})(jQuery);

$(document).ready(function()
{	
	$("#nav > li").expand();
	
	$('input[type="text"]').focus(function(){
		$(".secNav").hide();
		$(".on").removeClass("on");
	});
});
