// Script: Top Drop Down Navigation 
$(document).ready(function (){
	$('#nav ul ul').hide();
	$('#nav ul li').hover(function()
	{
		$(this).children('a').addClass('active');
		$(this).children('ul').fadeIn('medium').show();
	},
	function() {
		$(this).children('a').removeClass('active');
		$(this).children('ul').fadeOut('fast');		
	}	
	);
})

$(document).ready(function(){
	$('#nav ul li:last-child').css('background','none');	
});
$(document).ready(function(){
	$('.eventsBlock:last-child').css('border','none');	
});
$(document).ready(function(){
	$('.block02 ul li:last-child').css('border','none');	
});

