Cufon.replace('.bebas')('h2.title');

$(document).ready(function() {
    
    $('#rotor-list').DDSlider({
		
		nextSlide: '.slider_arrow_right',
		prevSlide: '.slider_arrow_left',
		selector: '.slider_selector'
		
	});
	
	$('ul.home-latest li.home-latest:odd').addClass('home-odd');
	// TESTIMONIES
	$('div.testimony-body').css("display","none");
	$('a.read').unbind('click').click(function(){
		$(this).parent().parent().children("div.testimony-body").slideToggle('slow');
		return false;
	});
	$('a.close').unbind('click').click(function(){
		$(this).parent().slideToggle('slow');
		return false;
	});
	// EVENTS
	// TESTIMONIES
	$('div.event-details').css("display","none");
	$('a.more').unbind('click').click(function(){
		$(this).parent().parent().children("div.event-details").slideToggle('slow');
		return false;
	});
	$('a.close').unbind('click').click(function(){
		$(this).parent().slideToggle('slow');
		return false;
	});
	
	// FANCYBOX

	// Twitter
		$("#twitter").getTwitter({
			userName: "mikebarbermin",
			numTweets: 3,
			loaderText: "Loading tweets...",
			slideIn: true,
			slideDuration: 750,
			showHeading: false,
			headingText: "Latest Tweets",
			showProfileLink: false,
			showTimestamp: true
		});
		
});


