var zeilen_produktzahl = 1;
if (screen.width > 1200) zeilen_produktzahl = 2;
if (screen.width > 1500) zeilen_produktzahl = 3;


/****  STYLESHEET-WAHL  ****/
var css_url = "rot.css";


/****  PUNKTE SETZEN  ****/
function teste (inv, mind)
{
	var zeichen = '&bull;'		// Zeichen, das ausgeschrieben wird

	var inventur = parseInt(inv);
	var mindestbestand = parseInt(mind);
	var farbe = '';
	var title = '';

	if ((inventur >= mindestbestand) && (inventur != 0))
	{
		farbe = '#00DD00';
		title = 'Sofort lieferbar';

		// setze auf orange, wenn inventur < 5 !
		if (inventur < 5)
		{
			farbe = '#FFBB00';
			title = 'momentan noch verf&uuml;gbar';
		}
	}

	else if ((inventur >= 0) && (inventur < mindestbestand))
	{
		farbe = '#FFBB00';
		title = 'momentan noch verf&uuml;gbar';
	}

	else
	{
		farbe = '#EE0000';
		title = 'l&auml;ngere Lieferzeit';
	}

	var ausgabe = '<font color=' + farbe + ' title=\"' + title + '\" style=\"cursor:default\">' + zeichen + '</font>';
	return (ausgabe)
}

/*  Analytics  */


  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16735734-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

