jQuery(function($) {
  var img = new Image();
  var _a = $("ul.gallery li:first").find('img').is('img') ? $("ul.gallery li:first").find('img') : false;
  var bigimg = _a.attr('rel');
  img.src = "/umbraco/imageGen.ashx?image=" + bigimg + "&height=550&width=550&constrain=true";
  $("#StortBillede").empty().append(img).fadeTo("slow",1);			
  
  $("ul.gallery li").each(function() {
    var thumb = $(this).find('img').is('img') ? $(this).find('img') : false;
    var _a = $(this).find('a').is('a') ? $(this).find('a') : false;
    
      thumb.click(function() {
                var img = new Image();
                var url = _a.attr('href');
                var bigimg = $(this).attr('rel');
                img.src = "/umbraco/imageGen.ashx?image=" + bigimg + "&height=565&width=565&constrain=true";
				$("#StortBillede").empty().append(img).fadeTo("slow",1);
				$("#StortBillede img").click(function(){
				var openedWin;
				if (!openedWin || openedWin.closed){
				var link = window.location + "?alttemplate=Galleri_StortBillede&image=" + bigimg;
				link = link.replace('#','');
				openedWin = window.open(link, "_blank");
}
				})
				});
	thumb.mouseover(function() {
					$(this).fadeTo("fast", 0.3);
				});
	thumb.mouseout(function() {
					$(this).fadeTo("fast", 1);
				});



  });
});

