$(document).ready(function(){

	$(".main a").click(function () { 
		
		if (this.href.indexOf('www.zoebrand.com') == -1) {  
			win = window.open(this.href,"external","status=yes,scrollbars=yes,width=975,height=600");
			win.focus();
			return false;
		}
		
	});
	
});