// Custom javascript functions for SilverBulletMan.com

function strstr(haystack, needle) {
	var pos = 0;
	haystack += '';
	pos = haystack.indexOf(needle);
	if( pos == -1 ){
		return false;
	} else{
		return haystack.slice(pos);
	}
}


