$(document).ready(function(){
	// reset search field
	var searchText = $('.searchinput').attr('value');
	
	$('.searchinput').focus( function() {
		var val = ( $(this).attr('value') == "" || $(this).attr('value') == searchText ) ?  "" : $(this).attr('value');
		$(this).attr('value', val); 
	});
	$('.searchinput').blur( function() {
		var val = ( $(this).attr('value') != "" && $(this).attr('value') != searchText ) ?  $(this).attr('value') : searchText;
		$(this).attr('value', val); 
	});
	
	$('div.projectimages a').hover( function() {
		$(this).append('<span>&nbsp;</span>');
		}, function() {
		$('span',this).remove();
	});
});
