$(document).ready(function()
{
     // if it's a local file just using $.get() should be fine
    if (window.opera) {
	$.get('css/opera.css', function(data){        
	    $('body').append('<style>' + data + '</style>');
	});
    }
});

