$(document).ready(function () {

	$('#email').click(function(){
		$('#email').attr('value','');
	});
	
	$('#name').click(function(){
		$('#name').attr('value','');
	});


	$('.swfbanner').each(function(){
		var swf=$(this).attr('rel');
		
		//$(this).children('img').remove();
		//$(this).prepend('<div class="banny'+$(this).children('img').attr('class')+' banny"></div>');
		//$(this).children('img').attr('alt','');
		//console.log($(this).next().html());
		//$(this).attr('href','');
		var width=$(this).css('width');
		var height=$(this).css('height');
		
		$(this).flash({
			src: swf,
			width:width,
			height:height,
          	flashvars: { aantalBB: '3520'}
		});
		//$(this).remove();
		
		
		//$(this).remove();
		
		//$('.flash-replaced').remove();
	});
	
	$('.poll').click(function(){
		var id=$(this).attr('value');
		$.get('/?ajax=true&x=vote&id='+id, function(data){
			$('#polle').html(data);
		});
	});
	
		tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox



});
