// JavaScript Document
Shadowbox.init({

    language: 'en',

    players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']

});

$(document).ready(function(){

	$("div#menubuttons em").animate({opacity: 0}, 0);

	$("div#menubuttons a").hover(function() {
		//$(this).next("em").stop().animate({opacity: 1}, "fast");
		$(this).children("img").stop().animate({opacity: 0}, 0);
	}, function() {
		//$(this).next("em").stop().animate({opacity: 0}, "slow");
		$(this).children("img").stop().animate({opacity: 1}, "slow");
	});
	
	
	$("div#photobuttons a").hover(function() {
		//$(this).next("em").stop().animate({opacity: 1}, "fast");
		$(this).children("img").stop().animate({opacity: 0}, 0);
	}, function() {
		//$(this).next("em").stop().animate({opacity: 0}, "slow");
		$(this).children("img").stop().animate({opacity: 1}, "slow");
	});
	
	
	$(function(){
	$('.scroll-pane').jScrollPane({showArrows:true, scrollbarWidth: 16});
	});

});