$(document).ready(function() {  

    //menu Hover
    $('div.mainMenu ul li a , div.dataMenu ul li a').hover(
        function() {
        $(this).addClass('menuHover');
        },
        function() {
        $(this).removeClass('menuHover');
        });
        
        
    //index box opacity
    $('div.mainBox img').css('opacity','0.6');
    $('div.mainBox img').hover(
        function() {
        $(this).css('opacity','1');
        },
        function() {
        $(this).css('opacity','0.6');
        });
        
    $('img.BigColcImg').fadeIn("slow");
});

