$(document).ready(function(){

var ua = navigator.userAgent.toLowerCase();
var showmobile = false;

if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
	showmobile = true;
}

var isAndroid = ua.indexOf("android") > -1;
if(isAndroid) {
	showmobile = true;
}

if ((navigator.userAgent.indexOf('BlackBerry') != -1) ) {
	showmobile = true;
}

if(showmobile) {
	$("#mobilenotice").slideDown();
}

});
