﻿$(document).ready(function() { 
    loadImages();
});

function isTouchUI() {
    return ((navigator.platform.indexOf("iPhone") != -1) || (navigator.userAgent.indexOf("Android") != -1) || (navigator.platform.indexOf("iPod") != -1));
}

if (isTouchUI()) {
	var cookieName = 'visited';
	var cookieOptions = {expires: 30, path: '/'};
	$('head').append("<script src=\"/js/jquery.cookie.js\" type=\"text/javascript\"></scr" + "ipt>");
		
	if($.cookie(cookieName)==null) {
		alert('We are currently working on bringing you a great mobile website experience that we know you will love. In the mean time, you can use the desktop version.');
		$.cookie(cookieName, '1', cookieOptions);
	}
}

function loadImages() {
    $('.thumb, .vshoplogo').appear(function() {
        if ($(this).attr('src') == null || $(this).attr('src') == "") {
            $(this).attr('src', $(this).attr('name'));
        }
    });
}






