$(function() {

	//$('.portfolioItem a:first-child').lightBox();
	
	$('input[type=text]').each(function() {
	
	var default_value = this.value;
	
	//$(this).css('border', 'solid 2px #c3c3c3'); //for styling...should put this in css
	$(this).focus(function() { 
		
		if(this.value == default_value) {
			this.value = '';
			$(this).css({
			
			'color': 'black',
			'background-color': '#eff4a4'
			
			});
		}
	});
	$(this).blur(function() {
		if(this.value == '') {
			this.value = default_value;
			$(this).css({
			
			'color': 'gray',
			'background-color': 'white'
			
			});
		}
	});
});

});
