$(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);
    }

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