$j(document).ready(function () {
$j("td.planDetails").find('a').hover(function() {
// $j(".buyInformation").animate({

$j(this).parent().parent().parent().find('.buyInformation').find('.innerContent').stop(true).animate({
    top: '-140',
    left: 0
  }, 500, "swing");



} , function() { 
$j(this).parent().parent().parent().find('.buyInformation').find('.innerContent').stop(true).animate({
    top: '0',
    left: 0
  }, 500, "swing");

}  );


$j("td.planDetails").find('a').click(function() {
return false;

});



$j('.images').each(function() {
    var $nav = $j('<div class="nav"><\/div>').insertBefore(this);
        $j(this).cycle({
            fx: 'scrollHorz',
            speed: 800,
            timeout: 8000,
            pager: $nav,
            next: '.next',
            prev: '.previous'
        });
});


$j('.three-image-carousel').each(function() {
    var $nav2 = $j('<div class="nav2"><\/div>').insertBefore(this);
        $j(this).cycle({
            fx: 'scrollHorz',
            speed: 800,
            timeout: 0,
            pager: $nav2,
            next: '.next2',
            prev: '.previous2'
        });
});


$j('.three-image-carousel2').each(function() {
    var $nav3 = $j('<div class="nav3"><\/div>').insertBefore(this);
        $j(this).cycle({
            fx: 'scrollHorz',
            speed: 800,
            timeout: 0,
            pager: $nav3,
            next: '.next3',
            prev: '.previous3'
        });
});





});

