$(document).ready(function() {
	$("a").click(function() {
		
		var str=this.href;
		var reg=new RegExp("\.(pdf|xls|doc|ppt|zip)","g");
		if (str.match(reg)) {
			window.open(this.href);
			return false;
		} else if ($(this).hasClass("spip_out")){
			window.open(this.href);
			return false;
		}
		
		return true;/**/
	});
})
