$(document).ready(function(){
						   
$('.tree_root > a').bind('click', function(e){
  leftx=e.pageX - this.offsetLeft;
  if (leftx<=14){
	$('#'+$(this).attr('id')+'div').slideToggle("slow");
	$(this).toggleClass('selected');
	return(false);
  }
});

$('.shop_img').hover(
  function () {
    $(this).addClass("shop_img_hover");
  },
  function () {
    $(this).removeClass("shop_img_hover");
  }
);

$("a[href$=jpg]").click( function(){ hs.expand(this); return false;});
$("a[href$=gif]").click( function(){ hs.expand(this); return false;});
$("a[href$=png]").click( function(){ hs.expand(this); return false;});
$("a[href$=jpeg]").click( function(){ hs.expand(this); return false;});

function changesize(){
$('.notop').css('margin-top',-$('.notop').height()+20);
}
changesize();
$(window).bind("resize", function(){
    changesize();
});

});

