$().ready(function(){

	
	
	$('.compartir_twitter_foto').live('click', share_twitter);
	$('.compartir_facebook_foto').live('click', share_facebook);
	$('.descargar_foto').live('click', descargar_foto);
	
	});


var current_pic;
var current_link;
var titulo="Bora bora";




function share_twitter(){
  if((current_link.indexOf("youtube") >= 0) || (current_link.indexOf("vimeo") >= 0)){ 
	var frase = titulo+" "+current_link;
	frase = frase.replace("&",",");
  }else{
	var frase = titulo+" http://www.discotecaborabora.com/"+current_link;
	frase = frase.replace("&",",");  
  }
	
	
	
	mywindow = window.open ("http://twitter.com/intent/tweet?text="+frase+" via @http://www.discotecaborabora.com/","mywindow","location=0,status=0,scrollbars=0,width=490,height=350");
	
}


function share_facebook(ide,tipo)
 {
	 if(current_link.indexOf("youtube") >= 0){ 
	 
	var link_array1= current_link.split('=');
	var link_array2= link_array1[link_array1.length-1].split('/');
	
	var sUrl = "http://www.facebook.com/sharer.php?u=http://www.youtube.com/watch?v="+link_array2[link_array2.length-1]+"&feature=share";
    mywindow = window.open (sUrl,"mywindow","location=0,status=0,scrollbars=0,width=490,height=350");
	
	 }else{
		 
		if(current_link.indexOf("vimeo") >= 0){  
		
		 var link_array1= current_link.split('=');
		var link_array2= link_array1[link_array1.length-1].split('/');
		
		var sUrl = "http://www.facebook.com/sharer.php?u=http://vimeo.com/"+link_array2[link_array2.length-1];
		mywindow = window.open (sUrl,"mywindow","location=0,status=0,scrollbars=0,width=490,height=350");
	 
		}else{
	 
	mywindow = window.open ("http://www.facebook.com/sharer.php?u=http://www.discotecaborabora.com/share_facebook.php?image="+current_link,"mywindow","location=0,status=0,scrollbars=0,width=490,height=350");
		 }
	 }
 } 



function descargar_foto(){
	//alert(seccion+"/"+current_pic);
	window.location="saveas.php?src="+seccion+"/"+current_pic;
}

