/*
var BioShow = {
	init : function() {
		$("#bio-text").find("a").click(this.showIt);
		$("#bio-more").find("a").click(this.hideIt);
	},
	showIt : function() {
		$("#bio-skills").toggle()
		$("#bio-text a").toggle()
		$("#bio-more").toggle()
	},
	hideIt : function() {
		$("#bio-skills").toggle()
		$("#bio-text a").toggle()
		$("#bio-more").toggle()
	}
};
*/
/*  Onload Functions    //---------------------------*/
/*
$(document).ready(function(){
	BioShow.init();;
});
*/

Shadowbox.loadSkin('classic', 'src/skin');
Shadowbox.loadLanguage('en', 'build/lang');
Shadowbox.loadPlayer(['flv', 'html', 'iframe', 'img', 'qt', 'swf', 'wmp'], 'build/player');

window.onload = function(){

    Shadowbox.init();

};
