$(document).ready(function() {
	$('.primaryPortlet').addClass('primaryPortletJS');
	
	$('.primaryPortlet').click(function() {
		location.href = $(this).find('a').attr('href');
	});
});

