$(document).ready(function() {
	/* IE6 & 7 sibling selector fix */
	$("a + span").addClass("filesize");
	
	/*+ Files & External Links */	
	$("a[href^='http://www'], a[rel='external'], a[rel='image'], a[href$='.asp'], a[href$='.htm'], a[href$='.jpg'], a[href$='.png'], a[href$='.pdf'], a[href$='.wmv'], a[href$='.ppt'], a[href$='.doc'], a[href$='.xls']").live('click',
		function(){
			window.open(this.href);
			return false;
		}
	);
	
});
