var fancyboxDefaults = {
	'transitionIn'	:	'elastic',
	'transitionOut'	:	'elastic',
	'speedIn'		:	600, 
	'speedOut'		:	200, 
	'overlayOpacity' : 0.8,
	'overlayColor' : '#333333',
	'titlePosition' : 'over'
};

$(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($.extend({},fancyboxDefaults,{'type' : 'image'}));
  $("a[rel^=lightbox],a[type^='lightbox']:has('img')").each(function(){
    var fopts=$.extend({},fancyboxDefaults,{'type' : 'image'});
    if($(this).attr('clickclose')=='1'){ $.extend(fopts,{'hideOnContentClick':true}); };
    $(this).fancybox(fopts) });
  });

 
  $("form.ajax .submit").attr('disabled','');
	$("form.ajax").ajaxForm({
    success: function(response){ 
    $.fancybox('<span style="color: black;">'+response+'</span>',fancyboxDefaults);  }
  });
