        $(document).ready(function(){
                $('#jBasket').load('/inc/cart_totals.php');
                $('#jBasketContents').hide();
                $('#jBasketContents').load('/inc/cart_view.php');
                $('.togglecart').click(function() {
                        $('#jBasketContents').toggle(400);
                        return false;
                });
        $("dd").hide();
                // ACCORDIAN
                        $('.arrow').attr('src','/newimg/newest-img/whatsnew-arrow.jpg');
            $("dt a").click(function(){
                                if ($(this).parent().parent().next().is(':visible')){
                                        $(this).parent().parent().next().slideUp("slow");
                                        //$('.arrow').attr('src','/newimg/newest-img/whatsnew-arrow.jpg');
                                        $(this).parent().find('img').attr('src','/newimg/newest-img/whatsnew-arrow.jpg');
                                }
                                else {
                                        $(this).parent().parent().next().slideDown("slow");
                                        $(this).parent().find('img').attr('src','/newimg/newest-img/whatsnew-arrow-down.jpg');
                                }                       
                                //$("dd:visible").slideUp("slow");
                                //$(this).parent().parent().next().slideDown("slow");
                                //$(this).parent().find('img').attr('src','/newimg/newest-img/whatsnew-arrow-down.jpg');
                                $("#sideNews:visible").load('/newinc/sideNews.php');
                                $("#sideReleases:visible").load('/newinc/sideReleases.php');
                                $("#sideSoundtracks:visible").load('/newinc/sideSoundtracks.php');
                return false;
             });
                // ZOOM IN AND OUT RELEASE IMAGES
                $(".zoom").mouseover(function() {
                        $(this).removeClass("zoom");
                        $(this).addClass("zoombig");
                });
                $(".zoom").mouseout(function(){
                        $(this).removeClass("zoombig");
                        $(this).addClass("zoom");
                });
                // 
                // STORE
                $('#browse2').hide();
                $('#browse3').hide();
                $('#browseBack').hide();
        });
