/*!
 * Copyright 2011 Pebble Design Pty Ltd. All Rights Reserved.
 * Author: Reiss Watts, Gary Swanepoel.
 */

jQuery(document).ready(function () {

	
/*-------------------------------------------------------------------------------- - > - 

	/* Menu Current State */
	jQuery('li a').each(function () {
		if (this.href == window.location.href.split('#')[0]) {
			jQuery(this).parent().addClass('current');
		}
	});
	
	
	/* Smooth Scroll */
	jQuery('.backtotop').click(function () {
		jQuery('html, body').animate({ scrollTop: 0 }, 1000);
	});
	
/*-------------------------------------------------------------------------------- - > - >
	
	/* Literature Fix */
	var replacethis = document.getElementById("literature");
	replacethis.innerHTML = replacethis.innerHTML.replace(/No literature found./g, '');
	
/*--END---------------------------------------*/
	
});
