(function($){
  // remove all 'views_slideshow_slide' <img> width & height attributes
  $(document).ready(function(){
    $('.views_slideshow_slide img').each(function(){
	  $(this).removeAttr('width');
	  $(this).removeAttr('height');	 
    });
  });
})(jQuery);;

