﻿$(document).ready(function () {

    //alert('Mapping is correct');

    $('#fallSpecial img').hover(function () {
        $(this).animate({ width: '+=5px' }, 200);
    }, function () {
        $(this).animate({ width: '-=5px' }, 200);
    });


//    $('#ContentContainer')
//            .css('opacity', 0.65)
//           .hide()
//           .delay(2000)
//           .fadeIn('slow')
//           .corners();

//    $('#Product_Description_Detail')
//                .css({ 'opacity': 1, 'color': '#000000' })
//                .corners();


//    $('#smenu')
//            .css('opacity', 0.85)
//           .hide()
//           .delay(3000)
//           .fadeIn('slow');

//    $('#smenu li ul').css({
//        display: "none",
//        left: "auto"
//    });

//    $('#smenu li').hoverIntent(function () {
//        $(this)
//      .find('ul')
//      .stop(true, true)
//      .slideDown('fast');
//    }, function () {
//        $(this)
//      .find('ul')
//      .stop(true, true)
//      .fadeOut('fast');
//    });





});
