

$(document).ready(function(){

	// Main Flash Image
    $('#mainPic').flash(
        { src: 'flash/imagerotator.swf',
          width: 760,
          height: 339 },
        { version: 7 },
        function(htmlOptions) {
			$this = $(this);
			htmlOptions.flashvars.file = 'img_rotate.xml';
			htmlOptions.flashvars.autostart = 'true';
			htmlOptions.flashvars.repeat = 'true';
			htmlOptions.flashvars.linkfromdisplay = 'true';
			htmlOptions.flashvars.shownavigation = 'false';
			htmlOptions.flashvars.transition = 'fade';
			htmlOptions.flashvars.rotatetime = '4';
			$this.prepend($.fn.flash.transform(htmlOptions));
        }
    );
	
});
