jQuery(document).ready(function(){
	$('.top_menu li:last').css('background','none'); 
	$('.right_wrp li:last').css('border','none'); 
	jQuery('.top_menu ul li.drop').hover(
        function() {
			jQuery(this).find('ul.sublinks').stop(true, true).slideDown(300);
			jQuery(this).find('a').addClass('active_top');
			jQuery(this).find('ul.sublinks a').removeClass('active_top');
        },
        function() {
			jQuery(this).find('ul.sublinks').stop(true, true).slideUp(120); 
			jQuery(this).find('a').removeClass('active_top'); 
        }
    );
});
