jQuery.noConflict();  
jQuery(document).ready(function() {
								  
	// Select text fields on focus, replace with deault text on blur if blank
	jQuery('input[type=text][value]').each(function(index, element) {
		jQuery(element).click(function() {
			this.select();
		}).focus(function() {
			jQuery(this).addClass('focus');
		}).blur(function() {
			if (this.value == '') {
				this.value = this.defaultValue;	
			}
			if (this.value == this.defaultValue) {
				jQuery(this).removeClass('focus');
			}
		});
	});
	
	jQuery("a[rel*='external']").click(function() {
		window.open(this.href);
		return false;
	});
	
	jQuery("a[rel*='back']").click(function() {
		history.go(-1);
		return false;
	});
	
	jQuery(".postcontent h1 span").each(function() {
		if(jQuery(this).height() < 20) {
			jQuery(this).css("line-height", "35px");	
		}
	});
	
});

