var imagenes = {
'new-holland' : ['newholland1.jpg','newholland2.jpg','newholland3.jpg','newholland4.jpg','newholland5.jpg'],
'Honda' : ['honda1.jpg','honda2.jpg','honda3.jpg','honda4.jpg','honda5.jpg'],
'honda-quads' : ['hondaq1.jpg','hondaq2.jpg','hondaq3.jpg','hondaq4.jpg','hondaq5.jpg'],
'Karcher' : ['karcher1.jpg','karcher2.jpg','karcher3.jpg','karcher4.jpg'],
'Daihatsu' : ['daihatsu1.jpg','daihatsu2.jpg','daihatsu3.jpg','daihatsu4.jpg'],
'somos' : ['somos1.jpg'],
'index' : ['home1.jpg']
				}
$(function(){
	var pagina = ($('body').attr('id')).split('_')[1];
	var cual_num = '';
	if(imagenes[pagina]) cual_num = aleatorio(imagenes[pagina].length);
	if(document.getElementById('descargar')){
		$('#descargar').css('backgroundImage','url(img/'+imagenes[pagina][cual_num]+')');
	}
	if((document.getElementById('p_somos'))||(document.getElementById('p_index'))){
		$('#subcabecera').attr('src','img/'+imagenes[pagina][cual_num]);
	}
	$('.submenu').hover(function(){$('ul',$(this)).fadeIn('slow')},function(){$('ul',$(this)).hide()});
	$('#producto_tabs').each(function(){
		$('a',$(this)).click(function(){
			var referencia = $(this).attr('rel');
			var vengo_de = $('.producto_activo a').attr('rel');
			$('#'+vengo_de).animate({height:'hide'},1000,'EaseInOut',function(){$('#'+referencia).animate({height:'show'},1000,'EaseInOut')});
			$('#producto_tabs li').removeClass('producto_activo');
			$(this).parent().addClass('producto_activo');
			return false;
		});
	});
	$('.lista_tienda a').click(function(){
		mostrarProductoMatriz($(this).attr('rel'));
		return false;
	});
	$('#listado_tienda tbody tr').hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover');});
	$('#listado_resultados tbody tr').hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover');});
	$('#listado_tienda tbody tr').click(function(){mostrarProductoLista($(this).attr('id'));});
	$('#listado_tienda tbody td a').click(function(){return false;});
	$('#listado_resultados tbody tr').click(function(){location.href=$(this).data().link});
	$('.columna.elemento','#p_index').click(function(){direccion = $('a:first',$(this)).attr('href');location.href=direccion;})
	$('.columna.elemento','#p_index').hover(function(){$('a:first',$(this)).addClass('encima');},function(){$('a:first',$(this)).removeClass('encima');})
	$('.elemento.hnd','#p_index').click(function(){direccion = $('a:first',$(this)).attr('href');location.href=direccion;})
	$('.elemento.hnd','#p_index').hover(function(){$('a:first',$(this)).addClass('encima');},function(){$('a:first',$(this)).removeClass('encima');})
})
$.easing['EaseInOut'] = function (p, t, b, c, d) {
	if ((t/=d/2) < 1) return c/2*t*t*t + b;
	return c/2*((t-=2)*t*t + 2) + b;
};
function mostrarProductoMatriz(este){
	$('<div></div>').attr('id','capa').appendTo('#contenido').click(ocultarProducto);
	$('<div></div>').attr('id','mostrador').appendTo('#contenido');
	$('<img/>').attr({'id':este+'grande','src':$('.'+este).data().grande, 'width':'220','height':'165'}).appendTo('#mostrador');
	$('.'+este+' dl').clone().appendTo('#mostrador');
	$('#mostrador .precio a').each(function(){
		$(this).after($(this).html()).remove();
	});
	var i;
	var lineas = $('.'+este).data().otrosDatos;
	for(i in lineas){
		$('<dt class="otros linea_'+i+'">'+i+':'+'</dt><dd class="otros linea_'+i+'">'+lineas[i]+'</dd>').appendTo('#mostrador dl').eq(0);
	}
	$('<ul></ul>').attr('id','acciones_producto').appendTo('#mostrador');
	$('<li><a href="form-informacion/'+$('.'+este).data().prod_id+'">solicitar información</a></li>').attr('id','solicitar_info').appendTo('#acciones_producto');
	$('<li><a href="form-enviar-amigo/'+$('.'+este).data().prod_id+'">enviar a un amigo</a></li>').attr('id','enviar_amigo').appendTo('#acciones_producto');
	$('<img/>').attr({'id':'img_cerrar','src':'img/cerrar_m.gif'}).appendTo('#mostrador').click(ocultarProducto);
	($.browser.msie)?document.getElementById('capa').style.filter = "alpha(opacity=60)":0;
	$('#capa').fadeIn('normal',function(){$('#mostrador').fadeIn()});
	$('body').addClass('con_detalle');
}
function mostrarProductoLista(este){
	$('<div></div>').attr('id','capa').appendTo('#contenido').click(ocultarProducto);
	$('<div></div>').attr('id','mostrador').appendTo('#contenido');
	$('<div></div>').attr('id','contenedor_imagen').appendTo('#mostrador');
	$('<img/>').attr({'id':este+'grande','src':$('#'+este).data().grande}).appendTo('#contenedor_imagen');
	$('<dl></dl>').appendTo('#mostrador');
	var i;
	var lineas = $('#'+este).data().datosProducto;
	for(i in lineas){
		$('<dt class="otros linea_'+i+'">'+i+':'+'</dt><dd class="otros linea_'+i+'">'+lineas[i]+'</dd>').appendTo('#mostrador dl').eq(0);
	}

	$('<ul></ul>').attr('id','acciones_producto').appendTo('#mostrador');
	$('<li><a href="form-informacion/'+$('#'+este).data().prod_id+'">solicitar información</a></li>').attr('id','solicitar_info').appendTo('#acciones_producto');
	$('<li><a href="form-enviar-amigo/'+$('#'+este).data().prod_id+'">enviar a un amigo</a></li>').attr('id','enviar_amigo').appendTo('#acciones_producto');
	$('<img/>').attr({'id':'img_cerrar','src':'img/cerrar_m.gif'}).appendTo('#mostrador').click(ocultarProducto);
	($.browser.msie)?document.getElementById('capa').style.filter = "alpha(opacity=60)":0;
	$('#capa').fadeIn('normal',function(){$('#mostrador').fadeIn()});
	$('body').addClass('con_detalle');
}
function ocultarProducto(){
	$('#mostrador').fadeOut('fast',function(){$('#capa').fadeOut('fast',function(){$('#mostrador,#capa').remove();})});
	$('body').removeClass('con_detalle');
}
function aleatorio(n){
	return ((Math.round((Math.random())*100)%n));
}
