$(document).ready(function () {
	$('ul.dropdown li.dropdown-main > a').click(function (event) {
		if ($(this).parent().is('.no-dropdown')) return true;
		
		event.preventDefault();
		$(this).parent().addClass('active');
		$(this).blur(function () {
			$pass=$(this).parent();
			var func=function () { $pass.removeClass('active'); }
			setTimeout(func, 200)
		});
	});
	
});

