

// JQUERY CUSTOM COMMANDS
$(document).ready( function() {  // start javascript when document is loaded
	
    /* MENU_MAIN HOVERS */  
    $('.menu_main li, .comp_list .list li').hover(function() { // IE6 does not support :hover on elements other than <a>
        $(this).addClass('hover');
    }, function() {
        $(this).removeClass('hover');
    });
	
	
	$('p:last').css('margin-bottom','0px');

   
   /*
	$('.img_link').fadeTo(1, 0.6); 
*/
   
}); // end ready function




