$(document).ready(function() {
	$('.portfolioLink').live('click', function(e) {
    	e.preventDefault();
    	var href = $(this).attr('href');
    	href = href + '?j=' + $(this).attr('id');
    	window.location = href;
    });
});
