$(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");
						
					}
				}
			});
}); 