[jQuery] Click Handler Not Returning False in IE7 Due to getScript()?

[jQuery] Click Handler Not Returning False in IE7 Due to getScript()?


Go here:
http://www.theshedbbq.com/gulfport/photos/
Click one of the photo gallery links. In IE7, it does not return
false and immediately jumps back to the top of the page. Within the
clickhandler, I'm grabbing some data from the anchor tags' attributes,
then calling getScript(). Do I need to add a callback to getScript()
to return false?
    $('#gallerySelect ul li a').click(function(){
        // Grab id value
        var obj = $(this);
        var id = obj.attr('id');
        var rel = obj.attr('rel');
        // Call getScript with id passed.
        $.getScript("/gulfport/photos/"+rel+"/"+id+"/"+id+".js" );
        return false;
    });