jQuery(document).ready(function(){		jQuery('#main-menu li div').addClass('menu-item-background');		/*	each(function(){		div = jQuery('<div>').html('Loading......');		jQuery(div).addClass('menu-item-background').hide();		$(this).prepend(div);	});	*/		/*	jQuery('#social-networking-menu .csc-textpic-imagerow img').each(function(){		jQuery(this).stop().animate({ opacity: 0.7}, 0 );	});		jQuery('#social-networking-menu .csc-textpic-imagerow img').mouseenter(function(){		jQuery(this).stop().animate({ opacity: 1}, 300 );	});	jQuery('#social-networking-menu .csc-textpic-imagerow img').mouseout(function(){		jQuery(this).stop().animate({ opacity: 0.7}, 300 );	});	*/		jQuery('.menu-item-background').stop().animate({ opacity: 0.0}, 0 );		jQuery('#main-menu ul li a').mouseenter(function(){		jQuery(this).prev().stop().animate({ opacity: 1}, 200 );	});		jQuery('#main-menu a').mouseout(function(){		jQuery(this).prev().stop().animate({ opacity: 0.0}, 500 );	});			jQuery('#main-menu a').click(function(event) {		jQuery('.current_page_item').removeClass('current_page_item');		jQuery(this).prev().stop().animate({ opacity: 0.0}, 300 );		jQuery(this).parent().addClass('current_page_item');	});	});
