$(document).ready(function() {	
	$('ul.dpimgcarousel').roundabout({
		btnNext: ".btnnext",
		btnPrev: ".btnprev",
		triggerFocusEvents:false,
		maxOpacity:1.0,
		minOpacity:0.0,
		bearing: 0.0,
		tilt: 0.0,
		minScale: 0.0,
		maxScale: 1.0,
		minZ: 200,
		maxZ: 280,
    
    //clickToFocus:false,
		//reflect: true, 
		//duration: 2000
		//clickToFocusCallback:function(),
		btnNextCallback: function(){
			/*$(this).find('li.roundabout-in-focus .image').animate( { width:"70%" }, 1000 );
			$(this).find('li.roundabout-in-focus .textWrapper').animate( { width:"30%" }, 1000 );
			$(this).find('li').not('.roundabout-in-focus').find('.textWrapper').animate( { width:0 }, 1000 );
			$(this).find('li').not('.roundabout-in-focus').find('.image').animate( { width:"100%" }, 1000 );*/
		},
		clickToFocusCallback: function(){
		  var textHeight = $(this).find('li').not('.roundabout-in-focus').find('.textArea').height();
      $(this).find('li.roundabout-in-focus .textArea .textWrap').animate( { height:300 }, 1000 );

      $(this).find('li').not('.roundabout-in-focus').find('.textArea .textWrap').animate( { height:20 }, 1000 );
      /*
      $(this).find('li.roundabout-in-focus .image').animate( { width:"70%" }, 1000 );
			$(this).find('li.roundabout-in-focus .textWrapper').animate( { width:"30%" }, 1000 );
			$(this).find('li').not('.roundabout-in-focus').find('.textWrapper').filter(function () { return $(this).css('width') > 0 }).animate( { width:0 }, 1000 );
			$(this).find('li').not('.roundabout-in-focus').find('.image').filter(function () { return $(this).css('width') > 0 }).animate( { width:"100%" }, 1000 );
			*/
		}
	});
	var textHeight = $(this).find('li').not('.roundabout-in-focus').find('.textArea').height();
	$('ul.dpimgcarousel li.roundabout-in-focus .textArea .textWrap').animate( { height:300 }, 1000 );
});

