// Javascript base para el tema
		$(document).ready(function(){
			
			// Lets do the same on the DIV slideshow to demonstrate its just as easy
			var show = $("#destacados").simpleshow({ speed:7000 });
			show.start();
			
//			// Here we add some click listeners using some very basic jQuery for our 4 buttons
			$("#pause").click(function(){
				show.pause();
			});
			
			$("#play").click(function(){
				show.start();
			});
			
			$("#prev").click(function(){
				show.prev();
			});
			
			$("#next").click(function(){
				show.next();
			});
			
			
		});

