/* author: Felicia Betancourt
date: 26.08.2009
file: jq_slideshow.js
Place slideshow in regular Joomla! content page using a jQuery command
and jQuery plugin Innerfade
*/

$(document).ready(function(){
   	
	if(document.getElementById("slc_summer09")) 
		{document.getElementById("slc_summer09").className="visible_content";
		$('div#slc_summer09 ul').innerfade({ animationtype: 'slide', speed: 2000, timeout: 5000, type: 'sequence', containerheight: '1em' });}
	
	if(document.getElementById("boat_trip")) 
		{document.getElementById("boat_trip").className="visible_content2";
		$('div#boat_trip ul').innerfade({ animationtype: 'slide', speed: 2000, timeout: 5000, type: 'sequence', containerheight: '1em' });}
	
 });
