$(function(){

	$("#flash-interview").flash({ 
          src: "flash-speler.swf",
          width: 197,
          height: 21,
		  wmode: "transparent",
          flashvars: {
			mp3: 'mp3/GrotiusCollege Compilatie Antwoorden Interview.mp3',
			progressBorderColor: "ffffff",
			emptyBarColor: "d1d2d4",
			color: "00adef"
		  }
        },{ version: 8 }
    );
	
	$(".target-blank").each(function () {
		$(this).attr("target","_blank");
	});
	
	if ($.browser.msie && parseInt($.browser.version) == 6){
		$(".ie6-link").each(function () {
			$("body").prepend('<a href="'+$(this).attr("href")+'" style="position:absolute;z-index:9;background:none;width:'+(parseInt($(this).css("paddingLeft").replace("px",""))+parseInt($(this).css("paddingLeft").replace("px",""))+$(this).width())+'px;height:'+(parseInt($(this).css("paddingBottom").replace("px",""))+parseInt($(this).css("paddingTop").replace("px",""))+$(this).height())+'px;margin:'+$(this).offset().top+'px 0 0 '+$(this).offset().left+'px"></a>');
		});
	}
	
	$(".lees-meer").click(function(){
		$(this).next(".lees-meer_tekst").toggle().end().toggleClass("actief");
	});
	
});