	var $j = jQuery.noConflict();
	$j(document).ready(function() { 
	
		
		$j('#recent-posts-2 ul').append('<li><a href="#" id="blogLink">&raquo; read all blog posts</a></li>');
		
		searchInput = $j('#s');
		searchInput.attr('value','search');
		
		searchInput.focus(function() {
		  if ( searchInput.attr('value') == 'search' ) {
		  	searchInput.attr('value','');
		  } else {
		  	//
		  }
		}).blur(function() {
		  if ( searchInput.attr('value') == '' ) {
		  	searchInput.attr('value','search');
		  } else {
		  	//
		  }
		});

		nameInput = $j('#input_2_2, #input_1_2');
		nameInput.focus(function() {
		  if ( nameInput.attr('value') == 'Name' ) {
		  	nameInput.attr('value','');
		  } else {
		  	//
		  }
		}).blur(function() {
		  if ( nameInput.attr('value') == '' ) {
		  	nameInput.attr('value','Name');
		  } else {
		  	//
		  }
		});


		emailInput = $j('#input_2_1, #input_1_1');
		emailInput.focus(function() {
		  if ( emailInput.attr('value') == 'Email (required)' ) {
		  	emailInput.attr('value','');
		  } else {
		  	//
		  }
		}).blur(function() {
		  if ( emailInput.attr('value') == '' ) {
		  	emailInput.attr('value','Email (required)');
		  } else {
		  	//
		  }
		});

		phoneInput = $j('#input_1_3');
		phoneInput.focus(function() {
		  if ( phoneInput.attr('value') == 'Phone' ) {
		  	phoneInput.attr('value','');
		  } else {
		  	//
		  }
		}).blur(function() {
		  if ( phoneInput.attr('value') == '' ) {
		  	phoneInput.attr('value','Phone');
		  } else {
		  	//
		  }
		});
		
		messageInput = $j('#input_2_5, #input_1_5');
		messageInput.focus(function() {
		  if ( messageInput.attr('value') == 'Message' ) {
		  	messageInput.attr('value','');
		  } else {
		  	//
		  }
		}).blur(function() {
		  if ( messageInput.attr('value') == '' ) {
		  	messageInput.attr('value','Message');
		  } else {
		  	//
		  }
		});
		
	});

