$(document).ready(function(){
	$('.coverimg2').focus(function(){
		if( $(this).val() == 'Or add image url...' ){
			$(this).val('');
		}
	});
	
	$('.coverimg2').blur(function(){
		if( $(this).val() == '' ){
			$(this).val('Or add image url...');
		}
	});
	
});

