function flashPutHref(href){
  location.href = href;
}


/* 
------------------ 
  jQuery 
------------------
*/

$(function(){
 
 // $('#ssp-photos').flashembed('/assets/fla/photos.swf', {
   // initialURL: escape(document.location)     
  // });

 // $('#ssp-videos').flashembed('/assets/fla/videos.swf', {
   // initialURL: escape(document.location)     
  // });

  // $('#ssp-performance').flashembed('/assets/fla/performance.swf', {
    // initialURL: escape(document.location)     
  // });

  // $('#ssp-installation').flashembed('/assets/fla/installation.swf', {
    // initialURL: escape(document.location)     
  // });
  
  // $('#ssp-home').flashembed('/assets/fla/home.swf');

  $('a[href*=.pdf]').click(function(){
  	window.open(this.href);
  	return false;
  });

  $('.archive tr').click(function(){
      var href = $(this).find('a').attr('href');
      	if(href){window.location = href;}
  });


});
