$(document).ready(function(){
	var count = $("#content .content_block").length;
	w = 16 + (201 * count);
	$("#content_wrapper").width(w);
	changeLayout(w);
	
	$(window).resize(function(){
		changeLayout(w);
	});
	
	$("#client-your-brand-here").removeClass("not-clickable").click(function(){
		location.href="http://www.ldv.be/contact/";
	});
	
	$("#content .content_client").filter(":not(.not-clickable)").hover(
	  function () {
		$(this).addClass("active").find(".star").addClass("star_hover").removeClass("star");
	  }, 
	  function () {
		$(this).removeClass("active").find(".star_hover").addClass("star").removeClass("star_hover");
	  }
	);
	
});
