$(document).ready(function() { 
			$("#websitesview").click(function () {
				if($('#websiteshide').length != 0){
					if($("#websiteshide").css('display') == "none"){
						$('#websiteshide').show("slow",function(){ $.scrollTo($('#bottomwebsites'),1000,{offset:-2250}); });
						$('#websitesview').addClass("active");
					}
				}
			}); 
			
			$("#brandsview").click(function () {
				if($('#brandshide').length != 0){
					if($("#brandshide").css('display') == "none"){
						$('#brandshide').show("slow",function(){ $.scrollTo($('#bottombrands'),1000,{offset:-850}); });
						$('#brandsview').addClass("active");
						
					}
				}
			});
			
			$("#printview").click(function () {
				if($('#printhide').length != 0){
					if($("#printhide").css('display') == "none"){
						$('#printhide').show("slow",function(){ $.scrollTo($('#bottomprint'),1000,{offset:-850}); });
						$('#printview').addClass("active");
						
					}
				}
			});
}); 