/* Author: Landon Poburan

*/

/*
 * Toggle button
 */
$('h2.tog').click(function () {
    $(this).next('div.toggle').toggle(300);
});

$('h2.tog').toggle(
    function () { jQuery(this).css('background-position', '0 -27px'); },
    function () { jQuery(this).css('background-position', '0 6px'); }
);














