// JavaScript Document
function detectDevice(user_agent)
{

if(!mobile_base_url)
{mobile_base_url='http://www.raphaeleetolivier.fr/blog'}
var url_mobile=mobile_base_url;
var device=new Array("Android","Blackberry","Blazer","Handspring","iPhone","iPod","iPad","Kyocera","LG","Motorola","Nokia","Palm","PlayStation Portable","Samsung","Smartphone","SonyEricsson","Symbian","WAP","Windows CE");var max_device=device.length;for(i=0;i<max_device;i++)
{if(user_agent.indexOf(device[i])!=-1)
{document.location=url_mobile;return;}}}
