function init() {
		window.onscroll = function() {
		var slider = document.getElementById("divSlider");
		var y = ((document.body.parentNode.scrollTop != undefined && document.body.parentNode.scrollTop != 0) ? document.body.parentNode.scrollTop : (window.scrollY != undefined ? window.scrollY : -1)); 
			document.getElementById('navcontainer').className = (y > 130 ? 'fixed' : '');
			document.getElementById('header').className = (y > 130 ? 'hidden' : '');
			//document.getElementById('container').className = (y > 130 ? 'navheight' : '');
			document.getElementById('cart').className = (y > 130 ? 'fixed_cart' : '');
			document.getElementById('addinfo').className = (y > 130 ? 'fixed_addinfo' : '');
		}
	}
		$(document).ready(function(){
			//Examples of how to assign the ColorBox event to elements
			$("a[rel='example1']").colorbox();
			$("a[rel^='item']").colorbox(); 
		});
try {
	window.alert = window.jqalert;
	}	catch (err) {
	window.alert('Your browser does not support overloading window.alert. ' + err);
}
