function clearDefault(dw) {
	if (dw.defaultValue==dw.value) dw.value = "";
}

function Default(w) {
	if (w.value=="") w.value = w.defaultValue;
}

$(document).ready(function() {
	$('#navigationBar a').mouseover(function(){
		var el = $('img', this);
		var imagesrc = el[0].src;
		imagesrc = imagesrc.replace('_on.', '.');
		imagesrc = imagesrc.replace('.gif', '_on.gif');
		el[0].src = imagesrc;
	}).mouseout(function(){
		var el = $('img', this);
		var imagesrc = el[0].src;
		imagesrc = imagesrc.replace('_on.', '.');
		el[0].src = imagesrc;
	});
});

