$(document).ready(function(){

	$('#pojHomepage a').hover(
      function () {
        $(this).fadeTo("fast", 0.5);
      }, 
      function () {
        $(this).fadeTo(100, 1);
      }
    );


});
