
/* SETARI GALERIE LOGOS NOI - HOMEPAGE */

$(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
					$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'3px'},{queue:false,duration:150});
				}, function() {
					$(".cover", this).stop().animate({top:'108px'},{queue:false,duration:400});
				});
			});


/* FUNCTII SHOW-HIDE PENTRU CATEGORIILE DE SIGLE */

function hide(objId) {
      var element = document.getElementById(objId);
	  if ( element != null) 
	  {
      	element.style.display = 'none';
		}
    }

  	function show(objId) {
	var element = document.getElementById(objId);
	  if ( element != null) 
	  {
      	element.style.display = '';
		}
    }
