$(document).ready(function() {

$("#header_image_container").live("mouseenter", function() {
  $(this).find("#header_description").fadeIn("normal", function() {  
  });
});

$("#header_image_container").live("mouseleave", function() {
  $(this).find("#header_description").fadeOut("normal", function() {  
  });
});




});
	
