/**
 * Global JS file
 * @author Helin Kotan
 * @author Richard Hallows
 */

/**
 * Javascript CSS namespace
 */
$('html').addClass('js');

/**
 * Outside of jQuery on Dom ready
 */

/**
 * jQuery on Dom ready functionality
 */
jQuery(function($) {	

	// init
	
		// shadowbox
		Shadowbox.init({
			overlayOpacity: 0.8,
			continuous: true
		});
		
		// email
		$('#contact').append('<a href="mailto:hello@helinkotan.com">hello@helinkotan.com</a>');
});
