﻿

$(document).ready(function () {

    $('#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');
    });





});

