$(document).ready(function() {
	$(".workshop-button").click(function() {
		$("#" + this.lang).show("fast").siblings().hide("fast");
	});

	$(".banner-feature-home h2").click(function() {
		location.href = $(this).children("a")[0].href;
	});

	$("#headRegisterButton").click(function() {
		location.href = "https://www.infosalons.com.au/ONLINERETAIL09S/start.asp";
	});

	$("#register-signup-button").click(function() {
		location.href = "/2009/register-for-updates.aspx?email=" + $("#email_address").val();
	});

	var COOKIE_NAME = "OR2009FV";
	var options = { path: '/', expires: 36500 };

	if($.cookie(COOKIE_NAME) === null) {
		$('.jqmWindow').jqm();
		$('.jqmWindow').jqmShow();
		$.cookie(COOKIE_NAME, '1', options);
	}

	// Remove cookie
	//$.cookie(COOKIE_NAME, null, options);




        COOKIE_NAME = "OR2009REF"
        options = { path: '/' };

        //if (document.referrer.indexOf("onlineretailer.net") == -1 && $.cookie(COOKIE_NAME) === null) {
	    //location.href = "http://www.onlineretailer.net/";
        //} else {
        //    $.cookie(COOKIE_NAME, '1', options);
        //}
});