try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

$(document).ready(function()
{

	$('a[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
	
	$('#ird_wp p').remove();
	
	ird_wp=$('#ird_wp');
	for (i=0;i<21;i++) {
		for (j=0;j<43;j++) 
			ird_wp.append('<div><i></i></div>');
	}
	
	$('#ird_wp div').mouseover(function(){
      $(this).toggleClass('e');
    }).mouseout(function(){
      $(this).toggleClass('e');
    });
	
	
});