$(document).ready(function(){
    
    jQuery('#news_main_list img.color').hide();

    jQuery('#news_main_list .news_wraper').bind('mouseover', function() {        
        $(this).addClass('active');
        $(this).find('.image_box img.gray').hide();
        $(this).find('.image_box img.color').show();
    }).mouseout(function(){
        $(this).removeClass('active');
        $(this).find('.image_box img.gray').show();
        $(this).find('.image_box img.color').hide();
    });

    jQuery('.project_box img.color').hide();
    jQuery('.project_box').bind('mouseover', function() {
        $(this).addClass('active');
        $(this).find('img.gray').hide();
        $(this).find('img.color').show();
    }).mouseout(function(){
        $(this).removeClass('active');
        $(this).find('img.gray').show();
        $(this).find('img.color').hide();
    });

    jQuery('#offer_type a').bind('mouseover', function() {
        jQuery('#offer_type a').removeClass('active');

        jQuery("#offer_images").children().removeClass('active');
        jQuery("#offer_images").children().addClass('hide');
        jQuery(this).addClass('active');
        var id = this.id+"_image";
        jQuery("#offer_images #"+id).addClass('active');
    }).mouseout(function(){
    });
});
