
jQuery.ready(function() {
  jQuery('a.minibutton').bind({
    mousedown: function() {
      jQuery(this).addClass('mousedown');
    },
    blur: function() {
      jQuery(this).removeClass('mousedown');
    },
    mouseup: function() {
      jQuery(this).removeClass('mousedown');
    }
  });
});


$(function() {
			$("div#makeMeScrollable").smoothDivScroll({ autoScroll: "onstart", autoScrollDirection: "backandforth", autoScrollStep: 1, autoScrollInterval: 70, startAtElementId: "startAtMe", visibleHotSpots: "always"});
		});
	$(document).ready(function(){
		$("a[rel='pictures']").colorbox({transition:"fade"});
		$("a[rel='picture']").colorbox();
		$("a[rel='gallery']").colorbox({transition:"fade"});
		$("a[rel='galleryw']").colorbox({transition:"fade", width:"75%", height:"75%"});
		$('a.colorboximg').colorbox();
	});

