$(document).ready(function() {
// setting the tabs in the sidebar hide and show, setting the current tab
	$('div.tabbed div.t2').hide();
	$('div.tabbed div.t3').hide();
	$('div.t1').show();

// SIDEBAR TABS
$('div.tabbed ul.tabs a').click(function(){
	var thisClass = this.className.slice(0,2);
	$('div.tabbed div.t1').hide();
	$('div.tabbed div.t2').hide();
	$('div.tabbed div.t3').hide();
	$('div.' + thisClass).show();
	$('div.tabbed ul.tabs li a').removeClass('tab-current');
	$(this).addClass('tab-current');
	});
});

function loadContent(elm, rate, postID) {
	var ids = { id: postID, rating: rate };
	jQuery.ajax({
		type: "post",
		url: "http://www.deliciouspudding.com/wp-content/plugins/visitor-likedislike-post-rating/rate.php",
		data: ids,
		beforeSend: function() {
			jQuery("#ratebox_"+postID).fadeTo(500, 0.10);
		},
		success: function(html) {
			jQuery("#ratebox_"+postID).html(html);
			jQuery("#ratebox_"+postID).fadeTo(500, 1);
		}
	});
}

