jQuery.noConflict();  
jQuery(document).ready(function() {
								  
	jQuery("a[rel*='external']").click(function() {
		window.open(this.href);
		return false;
	});
	
	jQuery("a[rel*='back']").click(function() {
		history.go(-1);
		return false;
	});
	
	jQuery("input[type='text']").focus(function() {
		this.select();
		if (this.value == 'What are you looking for?') this.value = '';
	});
	
	jQuery(".postcontent h1 span").each(function() {
		if(jQuery(this).height() < 20) {
			jQuery(this).css("line-height", "35px");	
		}
	});
	
});
