$(document).ready(function() {
    $('#main_carousel').jcarousel({
    	visible: 4,
		scroll: 1,
		wrap: 'both',
		//auto: 5,
		animation: 'slow'
    });
    
    //carousel width fix
    $(".jcarousel-clip-horizontal").css("padding-right", "8px");
    
    //feedback
    $(".feedback_form a.toggle").click(
        function(e){
            if (!($(this).hasClass("open"))){
                $(this).addClass("open");
                $("#fbf").animate({
                    right: '0'
                });
            } else {
                $(this).removeClass("open");
                $("#fbf").animate({
                    right: '-488px'
                });
            }
            e.preventDefault;
        }
    );
});

$(function() {
	$('#main_carousel a').lightBox();
});
