(function($) {
	
	$(document).ready(function() {
	
	$('.roundBox').hover(
	function(){
		$(this).addClass('hover');
	},
	function(){
		$(this).removeClass('hover');	
	});
	
	if (!$('#menu-topmenu li').eq(0).hasClass('current_page_item')) {
			$('.topMenuCorner.left').removeClass('active');
			$('li.current_page_item, li.current_page_parent, li.current-page-ancestor').prev().css('background-image', 'none');
		}
		
		$('#menu-topmenu li').click(function() {
			location.href = $(this).find('a').attr('href');
		});
		
	});	
			
})(jQuery);
