var current_horse;
var current_dog;
var old_picture;

function writeFlashHome() {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="224" height="328" title="T&iacute;tulos y campeones">' +
						'<param name="movie" value="img/home.swf?titles=360&champions=108" />' +
						'<param name="quality" value="high" />' +
						'<embed src="img/home.swf?titles=360&champions=108" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="224" height="328"></embed>' +
					'</object>');	
}

function writeFlashPresentation() {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="536" height="467" title="Presentaci&oacute;n">' +
		'<param name="movie" value="img/presentacion.swf" />' +
		'<param name="quality" value="high" />' +
		'<embed src="img/presentacion.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="536" height="467"></embed>' +
	'</object>');	
}

function showBigI(id, picture, number) {
	if (current_horse != null) {
		var old_horse = document.getElementById(current_horse);
		old_horse.src = old_picture;
	}
	var preview = document.getElementById(id);
	current_horse = preview.id;
	old_picture = preview.src;
	var big_picture = document.getElementById('big_picture');
	
	big_picture.src = "../img/fotos_instalaciones/" + picture + "_big.jpg";;
	preview.src = "../img/fotos_instalaciones/preview/preview_grises/" + picture + ".jpg";
	
	var number_div = document.getElementById('img-number');
	number_div.innerText = number;
}

function showBig(id, picture, number) {
	if (current_horse != null) {
		var old_horse = document.getElementById(current_horse);
		old_horse.src = old_picture;
	}
	var preview = document.getElementById(id);
	current_horse = preview.id;
	old_picture = preview.src;
	var big_picture = document.getElementById('big_picture');
	
	big_picture.src = "../img/fotos_caballos_miniatura/" + picture + "_big.jpg";;
	preview.src = "../img/fotos_caballos_miniatura/preview/preview_grises/" + picture + "_gris.jpg";
	
	var number_div = document.getElementById('img-number');
	number_div.innerText = number;
}

function showBigDog(id, picture, number) {
	if (current_dog != null) {
		var old_dog = document.getElementById(current_dog);
		old_dog.src = old_picture;
	}
	var preview = document.getElementById(id);
	current_dog = preview.id;
	old_picture = preview.src;
	var big_picture = document.getElementById('big_picture');
	
	big_picture.src = "../img/fotos_schnauzer_and_pinscher/" + picture + "_big.jpg";;
	preview.src = "../img/fotos_schnauzer_and_pinscher/preview/preview_grises/" + picture + ".jpg";
	
	var number_div = document.getElementById('img-number');
	number_div.innerText = number;
}


function showBigInstalations(id, picture, number) {
	if (current_horse != null) {
		var old_horse = document.getElementById(current_horse);
		old_horse.src = old_picture;
	}
	var preview = document.getElementById(id);
	current_horse = preview.id;
	old_picture = preview.src;
	var big_picture = document.getElementById('big_picture');
	
	big_picture.src = "../img/fotos_instalaciones/" + picture + ".jpg";;
	preview.src = "../img/fotos_instalaciones/preview/preview_grises/" + picture + ".jpg";
	
	var number_div = document.getElementById('img-number');
	number_div.innerText = number;
}

function swapItem(id, over) {
	var div = document.getElementById(id);
	div.className = over;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
