//http://jquery.lukelutman.com/plugins/flash/example-flashvars.html
var loc = "fr"; //Valor Default

$(document).ready(function(){
    loc = $('#idioma').val();
	$('#infoDescarga').hide();
	if(($('#lateralbar').height()+30)>($('#sidebar').height()+30) )
	{ $('#middle').height( $('#lateralbar').height()+180 )} else
	{ $('#middle').height( $('#sidebar').height()+180 )};
	
	$("#acordeon").accordion({
			header: 'h3.title-acordeon',
			active: false,
			alwaysOpen: false,
			animated: 'bounceslide',
			autoheight: false,
			clearStyle: true
		})
	var pos = $("#seleccion").position();
	var posFija = $("#header").position().left;
	//alert(posFija)
	var mitad = $("#seleccion").width()/2;
	var setPos = ((pos.left-posFija)+mitad)+"px";
	$("#cursor").css("left", setPos);	
});

function shInfo(titulo, desc, imagen)
{
	/*$('#infoDescarga').slideDown('slow');
	var line = "<h4>"+titulo+"</h4>";
	if(desc!="") { line += "<p class='info'>"+desc+"</p>"; var ko="margin: -15px 0 0 0;"}
	if(imagen!="") line += "<img style='"+ko+"' src='images/icn/"+imagen+"' alt='"+titulo+"' />";
	
	$('#infoDescarga').html(line);*/
}

function hdInfo()
{
	/*$('#infoDescarga').slideUp('slow');*/
}
//.substr(0,30)

