Drupal.behaviors.formLabel = function (context) {
	$('#user-login-block label').overlabel();
	$('#views-exposed-form-display-work-default label').overlabel();
	$('#user-login-block label').show();
	$('#views-exposed-form-display-work-default label').show();
};

Drupal.behaviors.fadeWork = function(context){
	$('.fadein-overlay:not(.fadein-processed)',context).show().addClass('.fadein-processed').fadeOut(1000);	
};
/*
Drupal.behaviors.openInfo = function(context){
	$('.work-item:not(.work-item-processed)',context).addClass('.work-item-processed').each(function(){
		$(this).hover(
		function(){
			$('.work-info-overlay-container',this).animate({"height":height},200);
			return false;
		},
		function(){
			$('.work-info-overlay-container',this).animate({"height":10},200);
			return false;
		});
	});
};*/
