// JavaScript Document

$(document).ready(function () {
	$('img[src$=.png]').ifixpng();
			
	$('#sfeerfotos').cycle({
		random:1,
		speed:500, 
		timeout:4000 
	});
	$('#sfeerfotos').show();
	
	$('.button').each(function(){
		$(this).bind("mouseover", function(e){
			$(this).find('img:first').attr('src','/images/knop_l_over.jpg');
			$(this).find('img:last').attr('src','/images/knop_r_over.jpg');
			$(this).css('background-image','url(/images/knop_over.jpg)');
		});
		$(this).bind("mouseout", function(e){
			$(this).find('img:first').attr('src','/images/knop_l.jpg');
			$(this).find('img:last').attr('src','/images/knop_r.jpg');
			$(this).css('background-image','');
		});
	});
	
	$('a.media').media();
	
	$('a.email').each(function(){
		e = this.rel;
		e = splitext = e.split("");
		revertext = splitext.reverse();
		reversed = revertext.join("");
		reversed = reversed.replace('[a]','@');
		reversed = reversed.replace(/\[\!\]/g,'.');
		this.href = 'mailto:' + reversed + '?subject=' + $(this).attr('subject');
		$(this).text(reversed);
	});
});

