$(document).ready(
	function(){
		if($('.framed')){
			//make room for the frame
			var framewidth = 190;
			$('.framed').width(framewidth).parent('div').width(framewidth);
			$('.framed img').css({'margin' : '20px'});

			$('.framed').append(
				[
					'<img src="' + themeDir + '/images/top.png" class="top" />',
					'<img src="' + themeDir + '/images/left.png" class="left" />',
					'<img src="' + themeDir + '/images/right.png" class="right" />',
					'<img src="' + themeDir + '/images/bottom.png" class="bottom" />'
				].join('')
			);


			$('.top').animate({top : '0'}, 1000);
			setTimeout("$('.right').animate({right : '0'}, 1000);",300);
			setTimeout("$('.bottom').animate({bottom : '0'}, 1000);", 900);
			setTimeout("$('.left').animate({left : '0'}, 1000);", 600);
		}
	}
);
