		$(document).ready(function(){
			// 1. FIX PARA IMAGENES PNG
			$('img[src$=.png],img[src$=.PNG],div#logoFijo,div#interior-header h3, #slider h3, #slider h4').ifixpng();
			
			// 2. SLIDE UP/ SLIDE DOWN DE CONTENIDO
			$(".slide-pane-1").bind("mouseenter",function(){
		      $(this).slideUp("normal");
		   })
			
			$(".slide-pane-2").bind("mouseleave",function(){
				$(".slide-pane-1").slideDown("normal");
			})
			
			// 3. KWICKS
			$(".kwicks").kwicks({
				max: 60,
				spacing: 5,
				isVertical: true,
				duration: 100
			})
			
			
	  	});





/*
		var currentslide = 1
		function showSlide(nrSld) {
			currentslide = parseInt(nrSld)
			$('#slider .slideWrapper').animate({left:-950*(parseInt(nrSld)-1)})
			redrawBullets(nrSld);
		};
		
		function redrawBullets(slide) {
			var currentBullet = 's'+slide;
			$('#slideCtrl a').each(function(){
			$(this).removeClass('s');
			if($(this).hasClass(currentBullet)){
				$(this).addClass('s')
				}
			});
		};
		
*/
// MENU PRINCIPAL
	 $(document).ready(function(){			
	  	if (document.all) {
				$("#nav-one li").hoverClass("sfHover");
			}
		
		$(".item ul li:last-child a").css('border-bottom','0');
		
	  });
	  
		$.fn.hoverClass = function(c) {
			return this.each(function(){
				$(this).hover( 
					function() { $(this).addClass(c);  },
					function() { $(this).removeClass(c); }
				);
			});
		};	  
