$(document).ready(function () {
$("#slideshows").carousel( { 
	autoSlide: true, 
	loop: true ,
	effect: "fade" ,
        autoSlideInterval: 5000,
	delayAutoSlide: 5000,
	animSpeed: 2500
} );
    resize_slideshow();
});
    
    function resize_slideshow() {
	resize_search();
	var head_w = $('#header').width();
	//	$('#main').css('width', head_w);
	var form_contact = $('#ContactAddForm').width();
	//	var new_slide = $('#slideshow').css('width', head_w-form_contact-20);
    }	

    $(window).bind('resize', function() {
	if (resizeTimer) clearTimeout(resizeTimer);
	resizeTimer = setTimeout(resize_slideshow, 100);
    });
