$(document).ready(function(){
	$("a[rel=misc]").click( function() {
		window.open( $(this).attr('href'), "misc","location=0,status=0,scrollbars=1, resizable=0, width=1000,height=650");
		return false;
	});
	$("a[rel=popup]").click(function(){
		window.open($(this).attr('href'), "popup","location=0,status=0,scrollbars=1, resizable=0, width=559,height=650");
		return false;
	});
	
	$("a[rel=external]").click(function(){
		window.open($(this).attr('href'));
		return false;
	});

	$("#result1 > tbody > tr:even:not(:eq(0)), #result2 > tbody > tr:even:not(:eq(0))").addClass("altrow");
	$(".card:odd").addClass("card_altrow");
});
