$(document).ready(function() {

    $('#menu-main-menu').superfish({ 
            delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        });

    $(" #colophon ul li:last").css('border-right', 'none');
    $("#access li:last").css('background', 'none');

    var browser = '';
    if (jQuery.browser.msie) {
        browser = "msie";
	
    }
    if (jQuery.browser.msie && jQuery.browser.version == '7.0') {

        browser = "msie7";
    }
    if (jQuery.browser.msie && jQuery.browser.version == '6.0') {

        browser = "msie6";
    }
    if (jQuery.browser.safari) {
        browser = "saf";
    }
    if (jQuery.browser.mozilla) {
        browser = "moz";
    }
    //alert();
    $("#c").wrap("<div class=\"" + browser + "\"></div>");

    

    $(".productgrid").each(function() {
        var bgurl = $(this).find('.meshimg').attr('src');

        $(this).css('background', 'url(' + bgurl + ') no-repeat');

    });

    $("a[href|='http://sgtf.com']").attr('target', '_blank');
});


