 $(document).ready(function () {
	 
	 $(".slider").hide();
				$(".trigger").toggle(function(){
					$(this).addClass("open"); 
					}, function () {
					$(this).removeClass("open");
				});
					$(".trigger").click(function(){
					$(this).next(".slider").slideToggle("fast,");
				});


$('#rotator').jshowoff({animatePause:false, speed:6000, controlText:{ play:'', pause:'', previous:'', next:'' }});

	 $('.img-left,.img-right').load(function(){
       var thisClass = $(this).attr("class");
       var thisCaption = $(this).attr("alt");
       var thisWidth = $(this).attr("width");
if($(this).attr("alt").length > 0) {
       $(this).removeAttr("class");
       $(this).wrapAll('<div class="'+thisClass+'" style="padding:10px; width:'+thisWidth+'px">').after('<div class="caption">'+thisCaption+'</div>');
}else{};
       });
	   
	   $('.img-left,.img-right').load(function(){
       var thisClass = $(this).attr("class");
       var thisCaption = $(this).attr("alt");
       var thisWidth = $(this).attr("width");
if($(this).attr("alt").length > 0) {
       $(this).removeAttr("class");
       $(this).wrapAll('<div class="'+thisClass+'" style="padding:8px; width:'+thisWidth+'px">').after('<div class="caption">'+thisCaption+'</div>');
}else{};
       });
	 
	 
	 });

