// When the page is ready...
$(document).ready(
   function()
   {
 
    
    // Pullquotes
		$('span.pullquote').each(function() {
			text = $(this).text();
			text=text.replace( /\((.*)\)/gi, " " );
			if ($(this).is(".right")) 
				$(this).parent().before('<blockquote class="pullquote right"><p>&quot;'+ text +'&quot;</p></blockquote>');
			else
				$(this).parent().before('<blockquote class="pullquote"><p>&quot;'+ text +'&quot;</p></blockquote>');
		});
   
   $.scrollingParallax('/images/site/bg-header.jpg', {
       bgWidth : '200%',
       enableHorizontal : true
   });
   
  }
);