var globalids = new Array();
jQuery(document).ready( function($) {

	if(jQuery().getTweetsList) {
		$('#tweets').getTweetsList({
			url:basepath+'/scripts/getTweetsList/php/getTweet.php',
			count:1,
			screenName:'BBWorldForum',
			refresh:5,
            display:1,
			single:true,
			duration:8000
		});
	}
	
	if(jQuery().newsTicker) {
		$('#news_ticker').newsTicker({
		  speed:2,
		  fps:25,
		  margin:80
		});
		//$("ul#ticker02").liScroll({travelocity: 0.05});
	}

	if(document.getElementById('testimonial-quote')){
		$("#testimonial-quote").cycle();
	}

	
	if(jQuery().countdownToEvent) {
		//usage: countdownToEvent(day(option));
		$('#countdownToEvent').countdownToEvent(2012, 10, 16, 09);
	}
	
	if(jQuery().fadeBanners && document.getElementById('home_headimage')) {
		var fadeBannerSetting = {fontColor:'#252525',padding:'5px 10px',border:'2px solid #eee',cornerRadius:0,bottom:10,left:10,margin:5,bgColor:'rgba(255,255,255,0.8)',bgColorIE:'rgb(245,245,245)'};
		$('#home_headimage').fadeBanners({
			duration:5000,
			duration2:700,
			loading:true,
			buttonNumber:false,
			buttonStyle:false
		});
	}

	if(jQuery().listScroller && document.getElementById('who_is_exhibiting')) {
		$('#who_is_exhibiting').listScroller({
		  direction:1,
		  duration:5000,
		  speed:1000
		});		
	}

	if(jQuery().listScroller3 && document.getElementById('testimonials-list')) {
		$('#testimonials-list').listScroller3({
		  direction:2,
		  duration:5000,
		  speed:1000
		});		
	}
	
	if(jQuery().galleryWithSlider && document.getElementById('interactive_zone')) {
		var slideColor = new Array('#aaa','#ddd','#aaa','#fafafa');
		$('#interactive_zone').galleryWithSlider(slideColor,false,40);
	}

	if(jQuery().autoGallery && document.getElementById('featured_speakers')) {
		$('#featured_speakers').autoGallery({
		  duration:6000,
		  iconSettings:false,//{size:7,borderWidth:1,borderColor:'#ccc',backgroundColor:'#666',cornerRadius:2},
		  descSettings:{headHeight:50,fontColor:'#fff',fontSize:12,backgroundColor:'#454e58',alpha:0.9,text:''},
		  scrollSpeed:750
		});
	}

	/*
	if(jQuery().twit && document.getElementById('jquery_twit_plugin')) { 
		$('#jquery_twit_plugin').twit('BBWorldForum',{
			count:3,
			limit:1
		});
	}
	*/
	if(jQuery().clickAndMoveItems) {
		$('#watch_videos_box').clickAndMoveItems({
			controller:{arrowColor:'#eee',height:35,bgColor:'#3e475b',fontSize:14,marginTop:10,fontColor:'#fff'},
			reflection:false
		});
	}
	
	$.videoPopup({
		zIndex:500
	});
		
	if ("#companies-by-product"){
		$("#companies-by-product p").each(function(i){
			$(this).fadeOut(100);
		});
	}
	
	
});

function update_form(companyids,productid){
	
	$("#companies-by-product p").each(function(i){
		$(this).fadeOut();
	});
	globalids[productid] = companyids;
	var results = []; 
	$(':checkbox:checked').each(function(i){
		results[i] = $(this).attr('id');
	});
	for (var i = 0; i < results.length; i++){
		var x = results[i];
		var temp = globalids[x];
		for (var j = 0; j < temp.length;j++){
			$('#'+globalids[x][j]).fadeIn(100);
		}
	}
	
	
	
	
	
}
