$(document).ready(function(){
	$(".popup").click(function(event) {
		var href = $(".popup").attr("href");
		window.open(href, 'popup', 'status=0,toolbar=0,width=800,height=600,scrollbars=0');
		event.preventDefault();
	});
	
	$(".popup2").click(function(event) {
		var href = $(".popup2").attr("href");
		window.open(href, 'popup', 'status=0,toolbar=0,width=800,height=600,scrollbars=0');
		event.preventDefault();
	});
	
	//Makes the selected id red
	var hash = $(location).attr('hash');
	$(hash).css('color', 'red')

	

});
