$("<link>").attr("type", "text/css").attr("rel", "stylesheet").attr("href", "http://www.willoughbydesign.com/look-book/look-book-form-styles-scripts").appendTo("head");

var current_feature = 0;

$(function(){
	
	// Forms
	$(".lb-text-input label").click(function(event){$(this).hide();});
	$(".lb-text-input input").blur(function(event){
		if ($(this).val() == "") {$(this).parent().children("label").show();}
	}).click(function(event){$(this).parent().children("label").hide();}).focus(function(event){$(this).parent().children("label").hide();});
	$(".lb-text-input textarea").blur(function(event){
		if ($(this).val() == "") {$(this).parent().children("label").show();}
	}).click(function(event){$(this).parent().children("label").hide();}).focus(function(event){$(this).parent().children("label").hide();});
});
