// JQUERY FUNCTION
$(function() {
	
	$(".main tr")
	.mouseover(
		function(){
			$(this).css({ background:"#EFEFEF"});
			$(this).children("th").css({ paddingLeft:"5px"});
		})
	.mouseout(
		function(){
			$(this).css({ background:"none"});
			$(this).children("th").css({ paddingLeft:"0"});
		});
	
	
	// TARGET BLANK XHTML STRICT
	$('a[@rel$="external"]').click(function(){
	
		this.target = "_blank";
	
	});
	
});
