// JavaScript Document
jQuery(document).ready(function() {
    jQuery('.jan2012-base').delay(1000).animate({ opacity: 0/*, filter: 'alpha(opacity=0)', '-moz-opacity': 0 */ }, 3000, function() {
        jQuery('.jan2012-base').remove();
    });
    if (jQuery.browser.msie) {
        jQuery('.jan2012-product').css({ display: 'block' });
        jQuery('.jan2012-product').hide();
    } else {
        jQuery('.jan2012-product').css({ display: 'block', opacity: 0 });
        jQuery('.jan2012-product').show();
    }
    jQuery('#jan2012-imagemap area.jan2012-area-product"').hover(function(e) {
        //mouseover
        var i = jQuery(this).attr('id').replace('jan2012-hotspot-product-', '');
        if (jQuery.browser.msie) {
            jQuery('.jan2012-quote.q' + i).hide();
            jQuery('.jan2012-shopall.s' + i).hide();
            jQuery('.jan2012-product.p' + i).show();
        } else {
            jQuery('.jan2012-quote.q' + i).animate({ opacity: 0 }, 100);
            jQuery('.jan2012-shopall.s' + i).animate({ opacity: 0 }, 100);
            jQuery('.jan2012-product.p' + i).animate({ opacity: 1 }, 100);
        }
    }, function(e) {
        //mouseout
        var i = jQuery(this).attr('id').replace('jan2012-hotspot-product-', '');
        if (jQuery.browser.msie) {
            jQuery('.jan2012-quote.q' + i).show();
            jQuery('.jan2012-shopall.s' + i).show();
            jQuery('.jan2012-product.p' + i).hide();
        } else {
            jQuery('.jan2012-quote.q' + i).animate({ opacity: 1 }, 100);
            jQuery('.jan2012-shopall.s' + i).animate({ opacity: 1 }, 100);
            jQuery('.jan2012-product.p' + i).animate({ opacity: 0 }, 100);
        }
    });
    jQuery('#jan2012-imagemap area.jan2012-area-shopall"').hover(function(e) {
        //mouseover
        var i = jQuery(this).attr('id').replace('jan2012-hotspot-shopall-', '');
    }, function(e) {
        //mouseout
    });
});
