$(document).ready(function () {

    
    	// Simple, Jquery Option
    	$("#main_slideshow .rewmodule_content").each(function(){

    		var $width = $(this).width();
    		var $height = $(this).height();

    		$('.slide', this).each(function(){
    			$(this).css({'width':$width,'height':$height});
    		});

    		$(this).find('img:first').each(function(){
    			$(this).rewIDX_IMGCANVAS({'method':'crop'});
    		});

    		$(this).find('.slideset').rewIDX_SLIDES({'timeout':5000});
    	});

    
});
