//Search----------------------------------------	
$(document).ready(function()
{
    $(".global_search").focus(function(srcc)
    {
        if ($(this).val() == $(this)[0].title)
        {
           
            $(this).val("");
        }
    });
    
    $(".global_search").blur(function()
    {
        if ($(this).val() == "")
        {
            
            $(this).val($(this)[0].title);
        }
    });
    
    $(".global_search").blur();     
  //Set for PNG fix-----------------------------------
    if (window.navigator.appName == "Microsoft Internet Explorer" && window.navigator.appVersion.search("IE 6") != -1) {
        DD_belatedPNG.fix(".header_logo a img");
    }

    //Main Menu
    

       

   


});




