
$(document).ready(function(){

    //hide the homepage h1 that's been included for seo
    $('.Home #main h1').hide();
    
    //setup the department home images
    $('#content-header h1.banner').each(function() {
      string = $(this).text().toLowerCase();
      $(this).html('<img src="/pws/client/images/departments/'+ string +'/banner.jpg" alt="'+ string +'" width="760px" height="160px" />');
    });
        
    //make external sites load in a new window
    $('a[rel*="external"]').click(function(){
	this.target = "_blank";
    });


   //load the cycle pluging and run it on anything with a class jq-cycle
   $.getScript("/pws/client/javascript/jquery.cycle.all.min.js",function() {
       $('.jq-cycle').cycle({ 
            fx:    'fade', 
            speed:  5000 
       });
   });

});
