// JavaScript Document
var ua = navigator.userAgent;
var checker = {
  iphone: ua.match(/(iPhone|iPod|iPad)/),
  blackberry: ua.match(/BlackBerry/),
  android: ua.match(/Android/)
}


if (checker.android){
	window.location="http://m.xazz.com.au/";
}

if (checker.iphone){
	window.location="http://m.xazz.com.au/";
}

if (checker.blackberry){
	window.location="http://m.xazz.com.au/";
}
