/* General JS functions */

$(document).ready(function() {

	// Make some links not clickable
	$('a[href="#"]').click(function() {
		return false;
	});

});
