//Efecto deslizante del menu de la izquierda...

$(document).ready(function()
{
	slide("#sliding-navigation", 8, 1, 200, .8);
});

function slide(navigation_id, pad_out, pad_in, time, multiplier)
{
	// creates the target paths
	var list_elements = navigation_id + " li.sliding-element";
	var link_elements = list_elements + " a" ;
	
	// initiates the timer used for the sliding animation
	var timer = 0;
	
	// creates the slide animation for all list elements 
	$(list_elements).each(function(i)
	{
		// margin left = - ([width of element] + [total vertical padding of element])
		$(this).css("margin-left","-180px");
		// updates timer
		timer = (timer*multiplier + time);
		$(this).animate({ marginLeft: "0" }, timer);
		$(this).animate({ marginLeft: "15px" }, timer);
		$(this).animate({ marginLeft: "0" }, timer);
	});

	// creates the hover-slide effect for all link elements 		
	$(link_elements).each(function(i)
	{
		$(this).hover(
		function()
		{
			$(this).animate({ paddingLeft: pad_out }, 150);
		},		
		function()
		{
			$(this).animate({ paddingLeft: pad_in }, 150);
		});
	});
}

function doOutline(e) {
	var srcId, srcElement, targetElement;
	if (window.event)e = window.event;
	var srcElement = e.srcElement? e.srcElement : e.target;
	if (srcElement.className == "Expanded" || srcElement.className == "Colapsed") {
		srcID = srcElement.id.substr(0, srcElement.id.length-3);
		targetElement = document.getElementById(srcID + "Frm");
		srcElement = document.getElementById(srcID + "Img");
		if (targetElement.style.display == "none") {
			targetElement.style.display = "";
			if (srcElement.className == "Expanded"){
				srcElement.className = "Colapsed";
			}
		} else {
			targetElement.style.display = "none";
			if (srcElement.className == "Colapsed"){
				srcElement.className = "Expanded";
			}
		}
      	}
}  


function doOutline2() {
	var srcId, srcElement, targetElement;
	 
	var srcElement = document.getElementById("honeymooners2");
	if (srcElement.className == "Expanded" || srcElement.className == "Colapsed") {
		srcID = srcElement.id.substr(0, srcElement.id.length-3);
		targetElement = document.getElementById(srcID + "Frm");
		srcElement = document.getElementById(srcID + "Img");
		if (targetElement.style.display == "none") {
			targetElement.style.display = "";
			if (srcElement.className == "Expanded"){
				srcElement.className = "Colapsed";
			}
		} else {
			targetElement.style.display = "none";
			if (srcElement.className == "Colapsed"){
				srcElement.className = "Expanded";
			}
		}
      	}
}  




         document.onclick = doOutline;

