$(document).ready(function(){
  $("div#gallery_index").slideDown(4000);
  if ($("h3").length == 0) {
    altezza = 200+($("tr").length * 120);
    $("div#contenuto").css("height",altezza+"px");
  }
  $("div#gallery_index2").slideDown(4000);
  setTimeout("adjustMargin()",4050);
  $("a[rel=group1]").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'titleShow'	:	true,
		'titlePosition'	:	'outside',
		'titleFormat'	:	formatTitle
			});
});

function formatTitle(title, currentArray, currentIndex, currentOpts) {
	
	return '<div id="fancybox-title-over"><div style="margin-right:80px;text-align:center;"><a name="fb_share" type="button" share_url="http://www.nolimits4speed.it/viewfoto.php?path='+title+'" title="http://www.nolimits4speed.it/viewauto.php?path='+title+'" href="http://www.facebook.com/sharer.php">Condividi</a> <script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script> &nbsp; &nbsp; <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.nolimits4speed.it%2F'+title+'&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=21&amp;locale=it_IT" scrolling="no" frameborder="0" style="border:none; overflow:hidden; position:absolute; width:450px; height:21px;" allowTransparency="true"></iframe></div></div>';
}

function reloadFBShare() {
	$("div#scriptCont").remove();
 	var script= document.createElement('script');
   	script.type= 'text/javascript';
   	script.src= 'http://static.ak.fbcdn.net/connect.php/js/FB.Share';
   	document.body.appendChild(script);	
}

function adjustMargin() {
  $("div#gallery_index2").css("margin-left","180px");
}

