$(function() {
	
	$('#bar').focus(function() {
		
		if ($(this).val() == 'Enter your RSS Feed URL') {
			
			$(this).val('');
			
		}
		
	});
	
	$('#bar').blur(function() {
		
		if ($(this).val() == '') {
			
			$(this).val('Enter your RSS Feed URL');
			
		}
		
	});
	
});
