
function mouseoverlink(dir,id) {
	if (dir == "in") {
		if (id == "headsurvey") {
			document.getElementById(id).src="http://bunchd.com/survey/img/headsurvey-select.jpg";
		}
		if (id == "headblog") {
			document.getElementById(id).src="http://bunchd.com/survey/img/headblog-select.jpg";
		}
	}
	if (dir == "out") {
		if (id == "headsurvey") {
			document.getElementById(id).src="http://bunchd.com/survey/img/headsurvey.jpg";
		}
		if (id == "headblog") {
			document.getElementById(id).src="http://bunchd.com/survey/img/headblog.jpg";
		}
	}
		
}

