$(document).ready(function()
{
    // png transparency fix for IE6
    // $(document).pngFix();
    if(window.location.hash) $('.'+window.location.hash.substring(1)).show();
    //else $('.panel1').show();
    
    $('a.buttons').click(function(event)
    {
	$('#extremeScroll').empty();
	$('#zenScroll').empty();
	$('#kidsScroll').empty();
	var scrolled = 0;
	$('.rewardPanel').slideUp();
	$('.'+$(this).attr('href').substring(1)).slideDown();
	if(!scrolled)
	{
	    $.scrollTo('+=400px', {axis: 'y', duration:'1200'});
	    scrolled = 1;
	}
    });
});