jQuery(function(){
	jQuery('#mainnav li.no').mouseenter(function () {
		//jQuery(this).find('ul').eq(0).addClass('open').show().dropShadow();
		jQuery(this).find('ul').eq(0).addClass('open').show();
		jQuery('#topSlider, #nextBtn, #prevBtn').stop().fadeTo(200,0.3);
	});
	jQuery('#mainnav li.no').mouseleave(function () {
		//jQuery(this).find('ul').eq(0).removeClass('open').hide().removeShadow();
		jQuery(this).find('ul').eq(0).removeClass('open').hide();
		jQuery('#topSlider, #nextBtn, #prevBtn').stop().fadeTo(200,1);
	});
	//jQuery('#topSlider').easySlider({prevText : '&laquo;', nextText : '&raquo;', auto : true, pause : 5000, continuous : true});
   jQuery('p.seminarregister strong').wrap('<span class="normal" />');
   jQuery('p.seminarregister a span.normal').append('<span class="hover"><span> </span></span>');
	jQuery('a').hover(
		function() {
   		jQuery('.hover').stop().animate({'opacity': 1}, 700);},
		function() {
				jQuery('.hover').stop().animate({'opacity': 0}, 800);		
			});
});

