//$(document).ready(function(){
//    lastBlock = $("#a1");
//    maxWidth = 770;
//    minWidth = 57;	
//
//    $("#accordion ul li a").click(
//      function(){
//        $(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
//	$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
//	lastBlock = this;
//      }
//    );
//	
//});
jQuery(document).ready(function(){
	
//    $('#accordion a').click(function() {
//		var c = $(this).next();
//		if (c.is(':hidden')) {
//			$('div.accordion-content').filter(':hidden').animate({width: 733}, {queue:false, duration: 400});
//			c.animate({width: 0}, {queue: false, duration: 400});
//		}
//		//$(this).next().toggle('slow');
//		return false;
//	})/*.next().hide()*/;
		
	$('#mainNav ul:first').children().hover(
    function(){
        $('ul', this).css('left', '-2px');
    },
    function(){
        $('ul', this).css('left', '-999em');
    }
    );
});