// JavaScript Document
$(document).ready(function()
{

$('.ptext .heading').mouseenter(function(){

$(this).parent().find('.content').show('fast');

})


$('.ptext .heading').mouseleave(function(){

$(this).parent().find('.content').hide('fast');

});




})


/*
$(window).load(function()
						{
							
						me('cell1','cell2');	
							
						})

function me(div1,div2)
{
	
	rh=$('#'+div1).height();
//rh=rh+65;
lh=$('#'+div2).height();
//alert(rh);
//alert(lh);
 if(rh>lh)
   {

 $('#'+div2).css('height',rh);
// alert($('#footer').css('top'));
   }
else
{
$('#'+div1).css('height',lh);


}

	
	
}*/
