jQuery(document).ready( function( ) {
									 
	jQuery( ".widget" ).animate({"opacity": 0.4});
	jQuery( ".widget" ).hover( 
		function( ) {
			jQuery(this).animate( {"opacity": 0.8});
		},
		function( ) {
			jQuery(this).animate( {"opacity": 0.4});
		}
	);
	
	if( jQuery.browser.msie ) {
	
		jQuery( ".widget ul" ).animate({"opacity": 0.4});
		jQuery( ".widget ul" ).hover( 
			function( ) {
				jQuery(this).animate( {"opacity": 0.8});
			},
			function( ) {
				jQuery(this).animate( {"opacity": 0.4});
			}
		);
		
	}
	
});