$(document).ready(function(){

	$("input:text, input:password, textarea, select").focus(function(){
		$(this).addClass("field-highlighted");
	});
	
	$("input:text, input:password ,textarea, select").blur(function(){
		$(this).removeClass("field-highlighted");
	});

	$(".confirm-del").click(function(){
		return confirm('Are you sure you wish to delete this News Article?');
	});

	$(".back-btn").click(function(){
		if ($(this).attr("rel") != '') {
			window.location = $(this).attr("rel");
		}
	});
	
});