$(document).ready(function(){

	Cufon.replace(['.footerBoxes .caption', '.cufonIt'], { fontFamily: 'Myriad Pro', hover: true });
	Cufon.replace(['.menu li', '.menuBar .right', '.content .caption'], { fontFamily: 'Myriad Pro SemiBold', hover: true });

	
	$(".hoverIt, .mainSite .content a img").hover(
      function () {
        $(this).fadeTo("fast", 0.7);
      }, 
      function () {
        $(this).fadeTo("fast", 1);
      }
	);	

	$(".sideLeft .wPicture:last").addClass("last");
	$(".pWorksLine div:last-child").prev().addClass("last");
	
	$(".detailsLink").vAlign();
	
 });
(function ($) {
  $.fn.vAlign = function() {
	return this.each(function(i){
	var ah = $(this).height();
	var ph = $(this).parent().parent().height();
	var mh = (ph - ah) / 2-5;
	$(this).css('top', mh);
	});
};
})(jQuery); 


