var $j = jQuery.noConflict();
     
     // Use jQuery via $j(...)
     $j(document).ready(function(){
		$j('.boxenContainer .ce_image').each(function(index) {
			var currentLink = $j("a", this).attr("href");
			$j(".boxenContainer .caption").wrapInner('<a href="#">');
			$j(".caption a", this).attr("href", currentLink);
			});
		
       	$j(".boxenContainer .block").hover(
		  function () {
			$j("p", this).fadeIn(300);
			$j(".caption", this).fadeIn(300);
			$j("h1", this).fadeOut(300);
			$j("img", this).fadeOut(300);
		  }, 
		  function () {
			$j("p", this).fadeOut(300);
			$j(".caption", this).fadeOut(300);
			$j("h1", this).fadeIn(300);
			$j("img", this).fadeIn(300);
		  }
		);
	
	
     });
