$(document).ready(function(){
	if ( $("#login-form-slide button").length > 0 ) {

		$("#login").click(function(){
	  	if ($("#login-form-slide").is(":hidden")){
	    	$("#login-form-slide").slideDown("slow");
	    }else{
	    	$("#login-form-slide").slideUp("slow");
	    }
	    return false;
	  });
			 
	  
	  $("#close-login-form-slide").click(function(){
			$("#login-form-slide").slideUp("slow");
			return false;
	  });
  }
});     


$(function() {
	$('.thumbscontainer a').lightBox({fixedNavigation:true});
	$('.thumbnail a').lightBox({fixedNavigation:true});
});

function clickclear(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
}
}
function clickrecall(thisfield, defaulttext) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
}
}

