/* A TARGET */
(function($) {
  $.fn.target = function() {
    return this.each(function(index, elm) {
      if (substr($(this).attr("class"), 0, 7) == 'target-') {
        $(this).attr("target", substr($(this).attr("class"), 7));
      }
    });
  }
})(jQuery);

$(document).ready(function() {
  $("a").target();
});

/* SUBMIT BUTTON */
$(document).ready(function() {
  $('img[@src$=.png]').not("#map_canvas img").pngfix({
		imageFixSrc: "/images/pixel.gif"
	});


	/* SEARCH */
	$("div.zoekbalk input").bind("keyup", function(e) {
	  if (e.keyCode == 13 && $(this).val().length > 0) {
	    window.location.href = '/search/' + $(this).val() + '/';
	  }
	});

	$("table.container tr.middle td.news ul li.item").each(function() {
		$(this).bind("mouseover mouseout", function(e) {
			if (e.type == 'mouseover') {
				$(this).addClass("newsOver");
			} else if (e.type == 'mouseout') {
				$(this).removeClass("newsOver");
			}
		});
	});
	
});