
// Standard jQuery header
;(function($) {
$(document).ready(function() {

		
	$(".profileHeader").click(function()
	{
		$(this).next(".profileMoreInfo").load('profile/short/?id='+($(this).attr('value')));
		
		$(this).next(".profileMoreInfo").slideToggle(250);
	});

})
})(jQuery);
