
var primeravez = true;

$(document).ready(function(){
	$('#cycle').cycle({ 
	       prev:   '#prev', 
	       next:   '#next', 
	       timeout:       4000, 
	       speed:         1000
	   });
	
	Shadowbox.init({
		skipSetup: 	true,
	    language:   "es",
	    players:    ["flv", "html","img", "swf"]
	});
	var enlaces = $('a[rel^="shadowbox"]');
	Shadowbox.setup(enlaces);
	
	
});

function iracliente(id){
	if(primeravez){
		 $("#cliente").animate({ height: "260px"}, 1500 );
		primeravez = false;
	}
	$.ajax({
        url: 		'socio_comercial.php',
        type: 		'POST',
        dataType: 	"html, script",
        data: 		{ id: id},
        beforeSend: function(){$("#cliente").html("<img class='loading' src='images/layout/tddbloader.gif'/>");},
        error: 		function(){$("#cliente").html("ERROR - TDDB");},
        success: 	function(cliente){$("#cliente").fadeIn().html(cliente);},
        complete: 	function(){}
    });
}

$("#finalimg").ready(function(){
	$('#sociosList').jScrollPane();
});