$(document).ready(function() {
	menu();

	jQuery('#carousel').jcarousel({
        scroll: 1,
        initCallback: mycarousel_initCallback,
        // This tells jCarousel NOT to autobuild prev/next buttons
        buttonNextHTML: null,
        buttonPrevHTML: null,
		visible: 1,
		animation: 1600
    });

	$('#form_phone').bind('submit', function(e) {
		e.preventDefault(); // <-- important
		$(this).ajaxSubmit({
			target:	'#container_form_phone'
		});
	});

	$('#form_contact').bind('submit', function(e) {
		e.preventDefault(); // <-- important
		$(this).ajaxSubmit({
			target:	'#container_form_contact'
		});
	});

	$('.summary_image').css('opacity',0.3);
	$('.summary_image').parent().hover(function(){
		$(this).find('.summary_image').stop().animate({opacity:1.0},'slow');
	},function(){
		$(this).find('.summary_image').stop().animate({opacity:0.3},'slow');
	});
	
});

$('#slider').thumbnailSlider({
	thumb_width	: 300,
	thumb_height: 150,
	easing		: 'easeOutExpo',//easeInBack
	speed		: 1600
});


