
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="nl" lang="nl">
<head>
<!-- 
Concept en productie (c) 2009
Netivity C&IS Zwolle

All rights reserved
url:    www.netivity.nl                                 
e-mail: info@netivity.nl                          
auteur: Netivity C&IS                             

Punterweg 10                              
8042 PB                                   
Zwolle                                    
038 - 850 1000 (fax 1001)                 

Gehele of gedeeltelijke overname, plaatsing op andere  
sites, verveelvoudiging op welke andere wijze ook      
en/of commercieel gebruik van deze pagina alleen na    
toestemming van de auteur.                             

Copyright (c) 1999-2009  Netivity C&IS                 
-->
<title>Autowasstraat & Poetscentrum De Wasdas Emmen-Veendam</title>

<meta name="description" content="Agito movements">
<meta name="keywords" content="Jet Charter, vliegtuig, verhuur, prive, jets, privejets, boeing, airbus, vliegtuig, management, vloot, vliegtuigen, wereldwijd">

<link rel="shortcut icon" href="http://wasdas.button.netivity.nl//favicon.ico" type="image/x-icon">
<script type="text/javascript" src="/includes/JS/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="/includes/JS/jquery.fancybox-1.2.1.js"></script>
<script type="text/javascript" src="/includes/JS/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="/includes/JS/jquery.columnizer.js"></script>
<script type="text/javascript" src="/includes/JS/jquery.pager.js"></script>
<script>
$(document).ready(function(){
	
	initAccordion();
	
	$("a.fancy_group").fancybox({
		'zoomSpeedIn':		300, 
		'zoomSpeedOut':	300, 
		'overlayShow':		true
	});
	
	slideShow();

	$('.multi-column').makeacolumnlists({cols: 2, colWidth: 195, equalHeight: 'ul', startN: 1});

	$("#strZoek").focus( function() {if($("#strZoek").val() == "zoeken op trefwoord"){ $("#strZoek").val(""); } } );

});

	function initAccordion()
	{
	
		$('.accordion').unbind();
		$('.accordion').click(function(ev){
			var el = $(ev.target).next().find(".accordionPanel");
			var els= $('.accordionPanelActive'); /*selected element*/
			/*close all open accordion panels*/
			if (els.css("display")=="block" && (!el.hasClass("accordionPanelActive"))) {
				els.slideToggle("fast");
				els.parent().prev(".accordion").toggleClass("accordionActive");
			}
			els.toggleClass("accordionPanelActive");
			
			
			/*slide the selected product open*/
			el.slideToggle("fast");
			el.toggleClass("accordionPanelActive");
			$(ev.target).toggleClass("accordionActive");
			
		});
	
	}

	function showMediaLijst(lngID, intStyleITID, strExpressie, strTitel, intAantalPerPagina, intPage, blnShowKop)
	{
		$.ajax({
				type: "GET",
				url: "/AJAX/request-handler.asp?strActie=show-medialijst&lngID="+lngID+"&intStyleITID="+intStyleITID+"&intAantalPerPagina="+intAantalPerPagina+"&strExpressie="+strExpressie+"&strTitel="+strTitel+"&intPage=" +intPage+ "&blnShowKop="+blnShowKop,
					success: function(msg){
					$("#linkoverzicht-container_"+lngID).html( msg );
					initAccordion();
				}
		});
		//return "boe";
	}
	
	function showMediaLijstActueel(strTitle, intStyleITID, intMediaID, intPage, intAantalPerPage)
	{
		$.ajax({
				type: "GET",
				url: "/AJAX/request-handler.asp?strActie=show-medialijst-actueel&intMediaID="+intMediaID+"&intStyleITID="+intStyleITID+"&intAantalPerPagina="+intAantalPerPage+"&intPage=" +intPage+"&strTitel="+strTitle,
					success: function(msg){
					$("#linkoverzicht-container-actueel-"+intMediaID).html( msg );
					initAccordion();
				}
		});
	
	}
	
	function showMediaLijstArtikel(strTitle, intStyleITID, intPage, intAantalPerPage)
	{
		$.ajax({
				type: "GET",
				url: "/AJAX/request-handler.asp?strActie=show-medialijst-artikel&intAantalPerPagina="+intAantalPerPage+"&intStyleITID="+intStyleITID+"&intPage=" +intPage+"&strTitel="+strTitle,
					success: function(msg){
					$("#linkoverzicht-container-artikel").html( msg );
					initAccordion();
				}
		});

	}

	function slideShow() {
	 
		var gallery =  $('#gallery');
	 
		if (gallery.children('a').length > 1) {
	 
			//Set the opacity of all images to 0 
			$('a', gallery).css({opacity: 0.0});
			$('a', gallery).css({display: 'block'});
			
			//Get the first image and display it (set it to full opacity)
			$('a:first', gallery).css({opacity: 1.0});
			
			//Set the caption background to semi-transparent
			//$('.pagevisual-content .content').css({opacity: 1.0});
	 
			//Resize the width of the caption according to the image width
			//$('.pagevisual-content .caption').css({width: $('#gallery a').find('img').css('width')});
		
		
			//Get the caption of the first image from REL attribute and display it
			$('.pagevisual-content .content').html($('#gallery a:first').find('img').attr('rel'));
			//animate({opacity: 1.0}, 400);

				
			//Call the gallery function to run the slideshow, 6000 = change to next image after 6 seconds
			pageVisualIntervalID = setInterval('gallery()',3000);
		
		}
	
	}
	 
	function gallery() {
		
		//if no IMGs have the show class, grab the first image
		var current = ($('#gallery a.show')?  $('#gallery a.show') : $('#gallery a:first'));
	 
		//Get next image, if it reached the end of the slideshow, rotate it back to the first image
		var next = ((current.next().length) ? ((current.next().hasClass('caption'))? $('#gallery a:first') :current.next()) : $('#gallery a:first'));	
		
		//Get next image caption
		var caption = next.find('img').attr('rel');	
		var id  = next.find('img').attr('id');	
		//Set the fade in effect for the next image, show class has higher z-index
		next.css({opacity: 0.0})
		.addClass('show')
		.animate({opacity: 1.0}, 1000);
	 
		$(".btnPager").removeClass("actief");
		$("#pager_"+id).addClass("actief");

		//Hide the current image
		current.animate({opacity: 0.0}, 1000)
		.removeClass('show');				
		
		//Set the opacity to 0 and height to 1px
		//$('.pagevisual-content .content').animate({opacity: 0.0}, { queue:false, duration:50 }).animate({height: '1px'}, { queue:true, duration:300 });	
		//$('.pagevisual-content .content').stop().animate({opacity: 0.0},100);
	
	
		//Animate the caption, opacity to 0.7 and heigth to 100px, a slide up effect
		//$('.pagevisual-content .content').animate({opacity: 1.0},100 ).animate({height: '150px'},500 );
		
		//$('.pagevisual-content .content').fadeOut();
		
		$('.pagevisual-content .content').fadeIn();
		$('.pagevisual-content .content').html(caption);
		//Display the content
		
		//; //animate({opacity: 1.0}, { queue:true, duration:300 });
	}

</script>
<link rel="stylesheet" type="text/css" href="/includes/CSS/frontend-scherm.css">
<link rel="stylesheet" type="text/css" href="/includes/CSS/fancybox.css">
<link rel="stylesheet" type="text/css" href="/includes/CSS/pager.css">
<style>
	body#portal{
		background:url(/img/portal/body-bg.gif) #282828;
	}
	#portal_wrapper
	{
		width:745px;
		height:609px;
		background:url(/img/portal/intro-canvas-bg.jpg);
		margin: 0 auto;
		position: relative;
	}
	#portal_wrapper h1{
		position:absolute;
		top:125px;
		left:150px;
		width:441px;
		height:78px;
		background:url(/img/portal/logo.gif);
		text-indent:-9999px;
	}
	#portal_wrapper a{
		display:block;
		position:absolute;
		width:579px;
		height:145px;
		left:83px;
	}
	#portal_wrapper a.button-charter{
		top:222px;
		background:url(/img/portal/button-charter.gif);
	}
	#portal_wrapper a.button-chauffeur{
		top:367px;
		background:url(/img/portal/button-chauffeur.gif);
	}
	
	
</style>
</head>

<body class="homepage">
<div id="wrap">
	<div class="canvas">
		<div class="headerwrapper clearfix">
			<div class="header">
				<div class="header-overlay"></div>
				

	<div class="pagevisual-visual" id="gallery">
		

		
		<a href="#"  class="show"  >
			<img width="996" height="330" src="/data/afbeelding/60.jpg" id="0" >
		</a>
		
		
		
		<a href="#"  style="display:none;"  >
			<img width="996" height="330" src="/data/afbeelding/59.jpg" id="1" >
		</a>
		
		
		
		<a href="#"  style="display:none;"  >
			<img width="996" height="330" src="/data/afbeelding/66.jpg" id="2" >
		</a>
		
		
		
		<a href="#"  style="display:none;"  >
			<img width="996" height="330" src="/data/afbeelding/63.jpg" id="3" >
		</a>
		
		
		
		<a href="#"  style="display:none;"  >
			<img width="996" height="330" src="/data/afbeelding/61.jpg" id="4" >
		</a>
		
		
		
		<a href="#"  style="display:none;"  >
			<img width="996" height="330" src="/data/afbeelding/62.jpg" id="5" >
		</a>
		
		
		
		<a href="#"  style="display:none;"  >
			<img width="996" height="330" src="/data/afbeelding/57.jpg" id="6" >
		</a>
		
		
		
		<a href="#"  style="display:none;"  >
			<img width="996" height="330" src="/data/afbeelding/58.jpg" id="7" >
		</a>
		
		
</div>

				</div>
				<div class="hoofdnav">
	<ul class="hnav hnav-links" >
			<li class="actief" >
				<a href="/" title="Home"><span></span>Home</a>
			</li>						
		
				<li class="" >
					<a href="/wasstraat/379/" title="Wasstraat"><span></span>Wasstraat</a>
				</li>				
				
				<li class="" >
					<a href="/wasboxen/380/" title="Wasboxen"><span></span>Wasboxen</a>
				</li>				
				
				<li class="" >
					<a href="/poetsen/397/" title="Poetsen"><span></span>Poetsen</a>
				</li>				
				</ul><ul class="hnav hnav-rechts">
				<li class="" >
					<a href="/restyling/383/" title="Restyling"><span></span>Restyling</a>
				</li>				
				
				<li class="" >
					<a href="/actie/382/" title="Actie"><span></span>Actie</a>
				</li>				
				
				<li class="" >
					<a href="/openingstijden/385/" title="Openingstijden"><span></span>Openingstijden</a>
				</li>				
				
				<li class="" >
					<a href="/contact/232/" title="Contact"><span></span>Contact</a>
				</li>				
					
		
	</ul>

					<a href="/" class="button-home"><span>home</span></a>
				</div>
			</div>
			<div class="wrapper clearfix">
			<div class="kruimelpad" >
</p></div>
		<div class="contentkolom">
			<div class="homepage-inleiding-tekst"><h1>Autowas- & Poetscentrum De Wasdas</h1>
		<dl class="contentblok-met-visual">
		<dd class='content contentbreed'>
		<p><strong>De Wasdas behoort tot &eacute;&eacute;n van de </strong><strong>modernste</strong><strong>, </strong><strong>grootste &amp; veiligste autowascentra in Nederland!<br />
</strong>Kwaliteit&nbsp;&amp; service staan op de eerste plaats in ons vak Autowassen &amp; Poetsen.<br />
Met&nbsp;vestigingen in zowel&nbsp;Emmen als Veendam zult u&nbsp;ondervinden dat de door ons opgedane ervaring<br />
vastgelegd is in de opzet en inrichting van het bedrijf.<br />
<br />
<strong>Bescherm uw kostbare bezit door veilig te wassen in &eacute;&eacute;n van onze Textiel autowasstraten!<br />
</strong>Door de toepassing van&nbsp;Textiel borstels wassen wij uw personenauto, bestelauto of bus <br />
(met een maximale hoogte van 2.20 mtr) glanzend schoon en krasvrij.<br />
<strong><br />
Nu open..! De poetsstraat in Emmen!<br />
</strong>Hiermee zijn wij wederom uniek in Nederland. <a href="/poetsstraat_in_emmen_geopend/432/">Trots tonen wij hier een paar foto&acute;s.</a><strong><br />
</strong>Wij nodigen u van harte uit alvast een kijkje te nemen in onze vestiging in Emmen!<br />
<strong><br />
De Wasdas is niet belastend voor het milieu.<br />
</strong>Bij de Wasdas wordt 90% van al het water gerecycled. Dit is mogelijk omdat wij gebruik maken van milieu <br />
vriendelijke shampoo's en waxen, hierdoor werken wij samen aan een beter milieu.<br />
<br />
<strong>Diensten:<br />
</strong>Op onze website staan onze diensten vermeld, u bent van harte welkom bij &eacute;&eacute;n van onze vestigingen<br />
voor vrijblijvende informatie, advies of een&nbsp;offerte. Uiteraard kunt u ons ook <a href="/contact_gegevens/232/">telefonisch </a>of per <a href="mailto:veendam@dewasdas.nl">email</a> bereiken. <br />
<br />
<strong><img alt="" width="25" height="18" src="/data/upload/Duim.jpg" />Profiteer van onze Internet acties!<br />
</strong><a href="/wij_hebben_actie/382/">Eenvoudig, snel &amp; altijd voordeel!</a><br />
<br />
<img alt="" width="30" height="28" src="/data/upload/Check(1).jpg" />&nbsp;<a href="/wasprogramma_s/389/">Voor ieder budget Veilig en Kwalitatief wassen!</a></p><br /><br /></dd>
		</dl>
		</div >&nbsp;
		</div>
			<div class="rechterkolom">
			
				<a href="/das_clean_team/423/" class="button-DasCleanTeam"><span>DasClean Team</span></a>
				<a href="/actie/382/" class="button-actie"><span>Actie</span></a>
				<div class="button-opladen" style="margin-left:20px;">
						<p></p>
						<a href="http://veendam.dewasdas.nl/" class="veendam">Veendam</a>
						<a href="http://emmen.dewasdas.nl/" class="emmen">Emmen</a>
					</div>
				<p class="betaalmethoden-border"></p>
				<p class="betaalmethoden"><a href="/wij_accepteren/424/"></a></p>
			
			</div>
		</div>
		<div class="footer-container">
			
	<ul class="linkjes">
	
	
		<li>
		<a href="/algemene_voorwaarden/247/" title="Algemene Voorwaarden" >Algemene Voorwaarden</a>
		</li>
		
		<li>
		<a href="/bedrijfsgegevens/248/" title="Bedrijfsgegevens" >Bedrijfsgegevens</a>
		</li>
		
		<li>
		<a href="/sitemap/284/" title="Sitemap" >Sitemap</a>
		</li>
		
		<li>
		<a href="/copyright_2011/310/" title="Copyright 2011" >Copyright 2011</a>
		</li>
		
</ul>


		</div>
	</div>
</div>	
	
<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-21478938-5']);
  _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);
  })();

</script>
	
</body>
	
</html>
