/**
 * @package Wordpress
 * @subpackage BLOG.VEVIDA theme
 * @author Fili Wiese, ONI <http://oni.nl>
 */

$(document).ready(function()
{
    /**
     * Methode om rel="external" om te zetten in target="_blank"
     * Dit is nodig om te voldoen aan het XHTML-standaard
     */
	
	$("a[rel=external]").each(function(){
		this.target="_blank";
	});
	
	/**
	 * JS-hack om MSIE's gebrek aan :hover onderstuening te omzeilen
	 */
	if (document.all) {
		$("#searchsubmit:hover, .wp-polls .Buttons:hover").hover(function() {
			$(this).addClass('hover');
		},
		function(){
			$(this).removeClass('hover');
		});
	}
	
});	