(function($) {

	$(document).ready(function() {

		$(".wpsc_top_level_categories > li:has(ul)").prepend("<span class=\"CatExpander\"><img border=\"0\" src=\"http://hobbygros.dk/wp-content/themes/mazine/images/down.png\"></span>");

		$(".CatExpander").css( 'cursor', 'pointer' );

		$(".CatExpander").toggle(function() {

			$(this).html( '<img border="0" src="http://hobbygros.dk/wp-content/themes/mazine/images/up.png">' );

		}, function() {

			$(this).html( '<img border="0" src="http://hobbygros.dk/wp-content/themes/mazine/images/down.png">' );

		});

		$(".CatExpander").click(function() {

			$(this).toggleClass("CatExpanded").siblings("ul").slideToggle(500);

			return false;

		}).eq(0).addClass("CatExpanded").end().siblings("ul").hide()

		.parent('.wpsc-cat-ancestor, .wpsc-current-cat').find('.CatExpander').click();
	});

})

(jQuery);

