// hide default value of textfields 
/*
var swap_text_boxes = [];
function init_swap_text_boxes(){
  $('input[type=text][value].input_meerweten').each(function() {
    swap_text_boxes[$(this).attr('id')] = $(this).attr('value');
  });
  $('input[type=text][value].input_meerweten').bind('focus', function() {
    if($(this).val() == swap_text_boxes[$(this).attr('id')]) {
      $(this).val('');
    }
  });
  $('input[type=text][value].input_meerweten').bind('blur', function() {
    if($(this).val() == '') {
      $(this).val(swap_text_boxes[$(this).attr('id')]);
    }
  });
}
*/
$(document).ready(function(){
	 
	//init_swap_text_boxes();
	$('div, #content, .white_bottom,ul, li a').ifixpng();

	
});