$(document).ready(function() {
	$("#navigation a, #contactInfo a").mouseover(function(){
		imgsrc = $(this).children("img").attr("src");
		matches = imgsrc.match(/_over/);
		if (!matches) {
			imgsrcON = imgsrc.replace(/.gif$/ig,"_over.gif");
			$(this).children("img").attr("src", imgsrcON);
		}
	});
	
	$("#navigation a, #contactInfo a").mouseout(function(){
		$(this).children("img").attr("src", imgsrc);
	});

	$("a[rel^='prettyPhoto']").prettyPhoto();
	
});