// toggle function 
$(document).ready(function(){

	$(".toggle").hover(function(){$(this).parent().addClass("hover");})

	$('.ttip').hover(function(){ $(this).stop().animate({paddingLeft:'10px'},300); },
					 function(){ $(this).stop().animate({paddingLeft:0},300); });

	$(".toggle_div").hide();
	$("h6.toggle").toggle(function(){$(this).addClass("active");},
						  function(){$(this).removeClass("active");});
	$("h6.toggle").click(function(){$(this).next(".toggle_div").slideToggle();})

	$('img#toggle_one').toggle(function() { $(this).attr("src","/wp-content/uploads/2011/09/stoel_oud.png"); }, function() { $(this).attr("src","/wp-content/uploads/2011/07/SAM_0757-e1314209064198.jpg"); });
	$('img#toggle_two').toggle(function() { $(this).attr("src","/wp-content/uploads/2011/07/kamer_6.jpg"); }, function() { $(this).attr("src","/wp-content/uploads/2011/07/kamer_2.jpg"); });
	$('img#toggle_thr').toggle(function() { $(this).attr("src","/wp-content/uploads/2011/07/kamer_4.jpg"); }, function() { $(this).attr("src","/wp-content/uploads/2011/07/kamer_3.jpg"); });

});
