$(function(){
	// Checkbox
	$(".checkbox").each(function(){
		$(this).find("input:checkbox").hide();
		if($(this).find("input:checkbox").is(":checked"))
			$(this).append("<img src='images/ingrijpskerk/checkbox_checked.gif' alt='' title='' />");
		else
			$(this).append("<img src='images/ingrijpskerk/checkbox.gif' alt='' title='' />");	
	}).find("img").click(function(){
		var $check = $(this).parent().find("input:checkbox");
		if($check.is(":checked"))
		{
			$(this).parent().find("img").attr("src", "images/ingrijpskerk/checkbox.gif");	
			$check.removeAttr("checked");
		}
		else
		{
			$(this).parent().find("img").attr("src", "images/ingrijpskerk/checkbox_checked.gif");	
			$check.attr("checked", "checked");			
		}
	});
});

