
/* substitute to solve conflict between jQuery and prototype */
/*
$(document).ready(function() {
	
	$(".valign").each(
		function() {
			padding_top = (69 - $(this).height())/2;
			$(this).css({ paddingTop:+padding_top+"px" });
		}				  
	);
	
});
*/
jQuery(document).ready(function() {
	jQuery(".valign").each(
	  function(){
		  padding_top = (69 - jQuery(this).height())/2;
		  jQuery(this).css({ paddingTop:+padding_top+"px"});
	  }
	  );
});
