JQuery and redirects

JQuery and redirects

Hi,
 
I am clicking on an anchor tag which calls some JQuery code, which posts to an Action method that loads a different page.  When I remove the JQuery and just call the Action method, the redirect works fine.  But when I add the JQuery (I need this in order to pass some parameters on the anchor onclick event), although the action method gets called, the redirect does not happen.  Can anybody tell me what is wrong with my code that could be causing this?
 

$(

".screenshot-link" ).click( function () {

var site = $( this ).attr( "site" );

var num = $( this ).attr( "num" );

$.post(

"/Development/Main/Screenshot" ,

{ site: site, num: num }

);

});