$(document).ready(function(){
	$(".input").focus(function(){
		// Select input field contents
		$(this).css('border','1px solid #0b6d96');
	}),
	$(".input").blur(function(){
		// Select input field contents
		$(this).css('border','1px solid #ccc');
	});
});

jQuery(function(){
	// ------ This function is used to open links in external window/tab without relying on the deprecated target attribute. So, whenever you want to open links in a new window. just add class="external"
	jQuery("a.external").click(function() {
		return !window.open(jQuery(this).attr("href"));
	});

});