$(document).ready(function(){

$(".galphoto img").css("opacity", "0.7");
//$(".galphoto img").eq(0).css("opacity", "1.0");
$(".galeriait").hover(
  function(){
   $(this).children(".galopis").css("text-decoration","underline");
   $(this).find(".galphoto img").css("opacity","1.0");
   },
  function(){
   $(this).children(".galopis").css("text-decoration","none");
   $(this).find(".galphoto img").css("opacity","0.7");
   }  
  ); 

});

var preventdogal=false;

function dogal(n){
	if(!preventdogal) location.assign(n);
}
