﻿$(document).ready(function() {

    $('.priceDetail').hide('fast');
    
    var toggleExpand = 'images/application/expand.jpg';
    var toggleCollapse = 'images/application/collapse.jpg';
    var $subHead = $('.priceTypeHeader');

    $subHead.prepend('<img src="' + toggleExpand + '" alt="expand this section" />')
                .hover(function() {
                    $(this).addClass('hover');
                }, function() {
                    $(this).removeClass('hover');
                });

    $subHead
                .click(function() {
                    var $toggleSrc = $(this).find('img');
                    if ($toggleSrc.attr('src') == toggleExpand) {
                        $toggleSrc.attr('src', toggleCollapse)
                        .attr('alt', 'hide this section');
                        $(this).siblings('.priceDetail').slideDown('medium');
                    }
                    else {
                        $toggleSrc.attr('src', toggleExpand)
                        .attr('alt', 'expand this section');
                        $(this).siblings('.priceDetail').slideUp('medium');
                    }
                });
});