

jQuery(document).ready(function($) {
    
	
//    $("#controller").jFlow({
//            slides: "#slideshow",
//            controller: ".btn",
//            slideWrapper: "#jFlowSlide",
//            selectedWrapper: "jFlowSelected",
//            auto: true,
//            width: "632px",
//            height: "320px",
//            duration: 400,
//            prev: ".prev",
//            next: ".next"
//    });
    
    
    $("#controller").jFlow({  
        slides: "#slideshow",  // the div where all your sliding divs are nested in  
        controller: ".btn", // must be class, use . sign  
        slideWrapper : "#jFlowSlide", // must be id, use # sign  
        selectedWrapper: "jFlowSelected",  // just pure text, no sign  
        width: "632px",  // this is the width for the content-slider  
        height: "320px",  // this is the height for the content-slider  
        duration: 400,  // time in miliseconds to transition one slide  
        prev: ".prev", // must be class, use . sign  
        next: ".next" // must be class, use . sign  
        
    }); 
    
    $("#slideshow").show();
    
});

function setVideo(sFLV, sPic, sIntro) {
	AC_FL_RunContent_container(
				'container', 'videoPlayer',
				'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
				'width', '302',
				'height', '243',
				'src', 'inc/jcplayer',
				'quality', 'high',
				'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
				'align', 'middle',
				'play', 'true',
				'loop', 'true',
				'scale', 'noScale',
				'wmode', 'transparent',
				'devicefont', 'false',
				'id', 'jcplayer',
				'bgcolor', '#ffffff',
				'name', 'jcplayer',
				'menu', 'true',
				'allowFullScreen', 'true',
				'allowScriptAccess', 'sameDomain',
				'FlashVars', 'videoURL=../' + sFLV + '.flv&autoPlay=false&startPhotoSource=' + sPic + '&backgroundColor1=0x333333&backgroundColor2=0x222222&highlightColor=0x0099ff',
				'movie', 'inc/jcplayer',
				'salign', 'TL'
				);

	$("#videoTitle").html(sIntro);
}
