/**
 * docs
*/
jQuery.noConflict();

jQuery(document).ready(function() {
   
    // png fix for IE6
    if (jQuery.browser.msie && jQuery.browser.version == "6.0" && ((jQuery("#content").length > 0)))
        jQuery("#content").pngFix();
    
    // rounded corners for input fields
    // had to do here cause if it's in the style, it causes issues with the corner.js
    if (!jQuery.browser.msie) {
        jQuery("#login input.wyethlogin").addClass("rounded_10");
        jQuery("#login input.submit").addClass("rounded_10");
    }
    
    // language selection
        jQuery("#headerstrip #language").hover(function(){
            jQuery(this).css({
                'overflow' : 'visible',
                'background-position':'0px -15px'
            });
        },
        function(){
            jQuery(this).css({
                'overflow' : 'hidden',
                'background-position':'top left'
            });
        });

});



