/*
* Custom jQuery functions
**/

$(document).ready(function() {
    $('#mycarousel').jcarousel({
        rtl: true,
        scroll: 1,
		auto: 7,
		wrap: 'circular',
		buttonNextHTML: null,
		buttonPrevHTML: null
    });
    
    $('#homeCarousel').jcarousel({
        scroll: 1,
		auto: 7,
		wrap: 'circular',
		buttonNextHTML: null,
		buttonPrevHTML: null
    });
    $('ul#faqList li a').hover(function() {
        var buttonId = $(this).attr('id');
    	$('#show'+buttonId).toggle();
    	$('#showDefault').toggle();
    });
});
