var refHead = document.getElementsByTagName('head')[0];
var s = document.createElement('script');
s.setAttribute('type','text/javascript');
s.setAttribute('src','http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js');
refHead.appendChild(s);

// add title on startpage
if(! document.title) {
    document.title = 'veganversand.at | Startseite'
}

// action-content
var actionTitle = "<strong><span class='red'>AKTION:</span> Wild West Wochen bei Veganversand.at! - 10% auf unser Wild West Sortiment! <a href='' id='veveActionBoxToggle'>Mehr erfahren &raquo;</a>",
    actionContent = "<div id='veveActionBoxClose'>X</div>";
    actionContent += "<img src='http://www.veganversand.at/images/wildwildwestfoto_480.jpg' style='width:200px' /><h2>10% f&uuml;r Produkte aus dem <a href='/aktionen/index.php' style='text-decoration:underline'><strong>Wild Wild West Sortiment</strong></a>!</h2>";
    actionContent += "<p>Veganer Ern&auml;hrung wird ja gerne nachgesagt, sie sei langweilig und ohne Geschmack, Veganer seien lebensunlustige Asketen, die Lebensweise etwas f&uuml;r gr&uuml;ne Spinner. <strong>Doch die Zeiten haben sich ge&auml;ndert!</strong></p>";
    actionContent += "<p>Vegourmet Alternativprodukte beweisen genau das Gegenteil vom Klischee: &Uuml;ber Nadelholzrauch gerauchte <strong>Wurst-Alternativen</strong>, w&uuml;rzige <strong>Burgermischungen</strong>, &uuml;berzeugende <strong>K&auml;se-Alternativen</strong>. Weg vom langweiligen sojalastigen faden Ersatzvleisch, - hin zu wahrem Genuss, kr&auml;ftig, deftig, &uuml;berzeugend - selbst f&uuml;r Omnivoren.</p>";
    actionContent += '<p class="green">Aus diesem Anlass begeht der Veganversand vom <strong>15. Februar bis zum 29. Februar 2012 die Wild Wild West Wochen.</strong></p>';
    actionContent += "<p>In dieser Zeit ist eine erlesene Auswahl von Produkten, nicht nur f&uuml;r den Urban Cowboy von heute in einer eigenen <a href='/aktionen/index.php'><strong>Rubrik</strong></a> zusammengefasst. Auf diese Produkte gibt es bis zum 29. Februar einen Rabatt von garantierten <strong>10% f&uuml;r Produkte aus dem <a href='/aktionen/index.php'><strong>Wild Wild West Sortiment</strong></a></strong>. Schlemmen Sie sich doch einfach einmal durch Vegane Gourmet-Alternativen mit Biss und W&uuml;rze.</p>";
	actionContent += "<p class='green' style='font-size:17px'><a style='text-decoration:underline;' href='/aktionen/index.php'><strong>Zum Wild Wild West Sortiment &raquo;</strong></a></p>";
    actionContent += "In diesem Sinne: So long, vegan friends!<br />Euer Veganversand Team";

window.onload = function() {

	var logo = document.getElementById('logo');
	var link = document.createElement('a');
	link.setAttribute('href', '/');
	logo.appendChild(link);

    $(function() {
        addActionBox();
        addActionContent(actionTitle, actionContent);
    });

}


function addActionBox() {
    $('body').append('<div id="veveActionBox"><div id="veveActionBoxTeaser"></div><div id="veveActionBoxContent"></div>');
    $('#veveActionBoxTeaser').click(function(evt) {
        evt.preventDefault();


        if (_gaq) {
            var category = document.location.pathname;
            var action = 'old-actionbox';
            if (category && action) {
                _gaq.push(['_trackEvent', category, action]);
            }
        }



        $("#veveActionBoxContent").slideToggle();
    });
    $('body, html').click(function(evt) {
        if($("#veveActionBoxContent").is(':visible')) {
            if($(evt.target).closest('#veveActionBox').length != 1) {
                $("#veveActionBoxContent").slideUp();
            }
        }
    });
}

function addActionContent(title, content) {
    $('#veveActionBoxTeaser').html(title);
    $('#veveActionBoxContent').html(content);
    
    $('#veveActionBoxClose').click(function() {
        $("#veveActionBoxContent").slideUp();
    });
}



