$(function () {
    $('#megamenu li').hover(function () {
        $(this).find('.megasubmenu').show();
        $(this).find('.parentlink').addClass('selected');
    }, function () {
        $(this).find('.megasubmenu').hide();
        $(this).find('.parentlink').removeClass('selected');
    });
    $('#megamenu li.parent').hover(function () {
        $('.vendors').hide();
        $('#vendors0').show();
    });
    $('#vendorss1, #vendors1').hover(function () {
        $('#vendorss1').addClass('selected');
        $('.vendors').hide();
        $('#vendors1').show();
    }, function () {
        $('#vendors1').hide();
        $('#vendors2').hide();
        $('#vendors0').show();
    });
    $('#vendorss2, #vendors2').hover(function () {
        $('#vendorss2').addClass('selected');
        $('.vendors').hide();
        $('#vendors2').show();
    }, function () {
        $('#vendors1').hide();
        $('#vendors2').hide();
        $('#vendors0').show();
    });

    $('#search input.text').val('Search...');
    $('#search input.text').blur(function () {
        if (this.value == '') this.value = 'Search...';
    });
    $('#search input.text').focus(function () {
        if (this.value == 'Search...') this.value = '';
    });
});