/* Author: 

*/
$(document).ready(function(){
	var content_height = $('#content-container').height();
	var menu_height = $('#left-sidebar').height();	
	if (content_height > menu_height) {
		$('#left-sidebar').css('height', content_height+65);
	}
	
	$(".slider").agile_carousel({
        carousel_data: data,
        carousel_outer_height: 250,
        carousel_height: 250,
        slide_height: 250,
        carousel_outer_width: 567,
        slide_width: 567,
        transition_type: "fade",
        transition_time: 2000,
        timer: 4000
    });
	//$('.slider').jcarousel({auto: 5, wrap: "last", scroll: 1, animation: 'slow'});
});
























