var mobileClients = [
	"iphone",
	"ipod",
	"ipad",
	"android",
	"midp",
	"240x320",
	"blackberry",
	"netfront",
	"nokia",
	"panasonic",
	"portalmmm",
	"sharp",
	"sie-",
	"sonyericsson",
	"symbian",
	"windows ce",
	"benq",
	"mda",
	"mot-",
	"opera mini",
	"philips",
	"pocket pc",
	"sagem",
	"samsung",
	"sda",
	"sgh-",
	"vodafone",
	"xda"
];

var isMobileClient = (function()
{
	var userAgent = navigator.userAgent.toLowerCase();
	for (var i in mobileClients) {
		if (userAgent.indexOf(this.mobileClients[i]) != -1) {
			return true;
		}
	}
    return false;
}());
if ( ! isMobileClient)
	document.write('<style>#site-foot-fixed { position:fixed; bottom: 0; }</style>');

var hashScroll = function(a){
	if ( ! isMobileClient)
	{
		$('html,body').animate({scrollTop: $('#' + a.href.split('#')[1]).offset().top - 2}, 500);// - $('#site-head-fixed').height()}, 500);
		return false;
	}
		return true;
}
