$(function() {
	var search = $('#q');
	//search.attr('title', search.attr('value'));
	var txt = search.attr('title');
	search.focus(function() {
		if($(this).attr('value') == txt) $(this).attr('value','');
	}).blur(function() {
		if($(this).attr('value') == '') $(this).attr('value',txt);
	});
	$('#menu a').addClass('nohover').wrapInner('<span></span>');
	$('#menu span').css({
		opacity: 0
	}).hover(function() {
		$(this).stop().animate({
			opacity: 1
		},
		200);
	},
	function() {
		$(this).stop().animate({
			opacity: 0
		},
		350);
	});
	$('a[rel="external"]').click(function() {
		window.open($(this).attr('href'));
		return false;
	});
});