$(document).ready(function(){

	$('.sms dt').click(function(){
			if($(this).next('dd').is(':visible')){
				$(this).next('dd').hide(500);
			}
			else{
				$(this).next('dd').show(500);
			}
			return false;
	});

	$('.drop-down dt').click(function(){
			if($(this).next('dd').is(':visible')){
				$(this).next('dd').hide();
			}
			else{
				$(this).next('dd').show();
			}
			return false;
	});

    jQuery('#carousel .container').jcarousel({
        scroll: 1
    });

});
