function clearInput(theElement, defaultText) {
	$(theElement).focus(function() {
		currentText = $(theElement).val();
		if(currentText == defaultText) {
			$(theElement).val("");
		}
	});
	$(theElement).blur(function() {
		currentText = $(theElement).val();
		if(currentText == "") {
			$(theElement).val(defaultText);
		}
	});
}

$(document).ready(function(){
	setTimeout(function() { $("#message_float").fadeOut('fast') }, 5000); 
	
	$(".lightbox").lightBox({
		imageLoading: 'http://www.viceland.com/staganddagger/wp-content/themes/staganddagger/images/ajax-load.gif'
	});
	
	$(".flickr").lightBox({
		imageLoading: 'http://www.viceland.com/staganddagger/wp-content/themes/staganddagger/images/ajax-load.gif'	
	});
	
	clearInput($("#form_email"), $("#form_email").val());
	clearInput($("#searchInput"), $("#searchInput").val());
	
});
