$(document).ready(function(){
  /*
  $("img[src*='img.php']:not(img[src*='resize'])").each(function(){
    var w=$(this).width();
    var h=$(this).height();
    $(this).attr('src',$(this).attr('src')+'&resize=1&sx='+w+'&sy='+h);
  });
  */
  $("a[type^='lightbox']:has('img')").each(function(){ $(this).attr("rel",$(this).attr("type")); });
  $(document).pngFix(); 
  $("a[rel^=lightbox],a[type^='lightbox']:has('img')").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'type' : 'image',
		'overlayOpacity' : 0.8,
		'overlayColor' : '#333333',
		'titlePosition' : 'over'
	});
	/*
	$("iframe").each(function(){
    $(this).attr('frameborder','0').attr('allowtransparency','yes');
  });
  */	
});
