
$(document).ready(function(){
	alert("test");
	$("a[href*='www.']").each(function(){
		$(this).replace('www.','http://www.');
	});

})
