$(document).ready(function(){

   $("img.sspGallery").each( function(img){
	
	  var altString = $(this).attr( "alt" );
      var attributes = altString.split( "x" );
      var type       = attributes[0];
      var size       = attributes[1];
      var id         = attributes[2];
      var width      = attributes[3];
      var height     = attributes[4];
      var element_id = 'spp_'+type+'_'+id;

      $(this).wrap('<div id="'+element_id+'"/>');
      
      switch(size)
      {
      	case 'medium':
      		var swf = '/_r/swf/level3_gallery_wide.swf';
      		break;
      	default:
      		var swf  = '/_r/swf/level3_gallery.swf';
      		break;
      }
      swfobject.embedSWF(swf,element_id,width,height,"9.0.0","expressInstall.swf",{'xmlfile':'http://www.scotscollege.school.nz/_ssp/images.php?'+type+'='+id,'xmlfiletype':'Director'},{'allowFullScreen':true});
	});
});

