$(document).ready(function() {

		$('INPUT.auto-hint').each(function(i, el){
			if($(this).val() == ''){
				$(this).val($(this).attr('title'));
			}
			$(el).focus(function(){
				if ($(this).val() == $(this).attr('title')) {
					$(this).val('');
				}       
			});
			$(el).blur(function(){
				if ($(this).val() == '') {
					$(this).val($(this).attr('title'));
				}
			});
		});
		
	
	//Open all external links in a new window
	$("a[href^='http:']:not([href*='" + window.location.host + "'])").each(function() { 
	if(! window.location.href =='blog.green17creative.com'){              
        $(this).attr("target", "_blank");
	}
    });
	
	//Open all links with rel="external" in new window
	$('a[rel="external"]').click( function() {
			window.open( $(this).attr('href') );
			return false;
    });
		

}); //end of doc ready
