$(document).ready(function() {

 	$(".crewpage .token").each(function(index){
		if(index % 2 == 1){
			$(this).closest(".token").before("<hr class=\"clear\" />");
		}
	});

	$("#te-token-715228, #te-token-715368").each( function(){
        var linkTo = $(this).find(".contentImageArea a").attr("href");
        $(this).click( function(){
            window.open(linkTo);
        });
    });	
	
});

