var Base = {

	base_path: 'http://bigideas.systemdev.co.uk/',
	
	init: function(){
	
		
	
	},
	
	hyphenSplit: function(value){

		var split = value.indexOf("-");
		var ID = value.substr(split + 1,value.length);
		
		return ID;
	
	}

}

$(document).ready(Base.init);




