jQuery.noConflict(); 
jQuery(document).ready(function() {
    jQuery(jQuery("div#header input.submit").get(0)).hover(function(){
        jQuery(this).attr("src", BASEURL + "static/images/sok-hover.png");
    }, function(){
        jQuery(this).attr("src", BASEURL + "static/images/sok.png");
    });
    jQuery(jQuery("div#header input.submit").get(0)).mousedown(function(e){
        e.preventDefault();
        jQuery(this).attr("src", BASEURL +  "static/images/sok-press.png");
    });
});
