_uacct = "UA-132767-7";
urchinTracker();

$(function () {
	$('#search_form input:text').focus(function() {
		if ($(this).attr('value') != '') {
			$(this)
				.attr({value: ''})
				.css({color: "black"})
		}
	})

	$('#nav li')
		.mouseover(function() {$(this).addClass('over')})
		.mouseout(function() {$(this).removeClass('over')})	

	$('a.external').each( function() {
		if ( $(this).attr('href').indexOf("foodconsultants.com") < 0 ) {
			if ( $(this).attr('href').indexOf("@") < 0 ) {
				$(this).click(function() { urchinTracker("/outgoing/" + $(this).attr('href').split('.').reverse()[1]) })
			} else {
				$(this).click(function() { urchinTracker("/outgoing/" + $(this).attr('href').split('@')[0].split(':')[1] + "_email") })
			}
		}
	})
})