jQuery(document).ready(function($) {
	if ($.browser.opera) {
		$.support.opacity = true;
	}
	$('#searchtext input').focus(function() {
		$(this).attr('value', ($(this).attr('value') == 'Search...') ? '' : $(this).attr('value'));
	}).blur(function() {
		$(this).attr('value', ($(this).attr('value') == '') ? 'Search...' : $(this).attr('value'));
	});
	$('.sidebar .box').each(function() {
		$(this).css({'-moz-border-radius' : '3px', '-webkit-border-radius' : '3px', 'border-radius' : '3px'});
		$(this).find('a').hover(function() {
			$(this).parent().addClass('onhover');
		}, function() {
			$(this).parent().removeClass('onhover');
		});
	});
	$('.entry-bottom').each(function() {
		$(this).children('.readmore, .tags').css({'-moz-border-radius' : '3px', '-webkit-border-radius' : '3px', 'border-radius' : '3px'});
		$(this).find('.readmore a').hover(function() {
			$(this).parent().addClass('onhover');
		}, function() {
			$(this).parent().removeClass('onhover');
		});
	});
	$('#bottom_column .widget h3').each(function() {
		$(this).css({'text-shadow' : '1px 1px 0 #111'});
	});
	$('#category li a strong').each(function() {
		$(this).css({'text-shadow' : '1px 1px 0 #fff'});
	});
	$('.wp-pagenavi span.current, .wp-pagenavi a, .form-submit input, .widget_search input#searchsubmit').css({'-moz-border-radius' : '2px', '-webkit-border-radius' : '2px', 'border-radius' : '2px'});
	$('.form-text input, .widget_search input#s, .form-textarea textarea, .commentlist li, .comment-thumb, .comment-content .reply a').css({'-moz-border-radius' : '3px', '-webkit-border-radius' : '3px', 'border-radius' : '3px'});
	$('.commentlist').children('li:even').addClass('evenrow');
	$('span.required').each(function() {
		$(this).css({'text-shadow' : '1px 1px 0 #777', '-moz-border-radius' : '3px', '-webkit-border-radius' : '3px', 'border-radius' : '3px'});
	});
});