$(function() {
		  $("#gnavi").lavaLamp({
			 fx: "backout",
			 speed: 700,
			 click: function(event, menuItem) {
				return false;
			 }
		  });
	   });




function scroller(pos){
	if(pos==screen.availHeight) //scroll down
	{	
		var y = 0;
	}
	else //scrool up
	{
		var y = 250;
	}

	y = y + (pos - y)*.1;
	while(y != pos)
	{
		window.scroll(0,y);
		y = y + (pos - y)*.1;			
		if (((pos - y) <= .5)&&((pos - y) >= -.5))
		{					
			y = pos;
		}		
	}
}


		if (navigator.userAgent.indexOf('iPhone') != -1) {
		location.href = 'http://ipn.cahier-inc.com/index.html';}
		if (navigator.userAgent.indexOf('iPod Touch') != -1) {
		location.href = 'http://ipn.cahier-inc.com/index.html';}
		if (navigator.userAgent.indexOf('Mobile') != -1) {
		location.href = 'http://ipn.cahier-inc.com/index.html';}


