	jQuery(document).ready(function($) {
		$(".menu li").each(function(){
					var width = $(this).width();
					$(this).prepend('<div></div>');
				}).hover(function(){
					
					$(this).find("div").stop().animate({'opacity': '1'});
				}, function(){
						if($(this).find("li").attr("class") == 'current_menu_item'){
							$(this).find("div").stop().animate({'opacity': '1'});
						}
						else{
						
						$(this).find("div").stop().animate({'opacity': '0'});
					}
					});
  $('.signup').hide();
  
 $('a#slick-toggle').click(function() {
    $('.signup').slideToggle(300);
    return false;
  });
});
