

$(function() {

	// blog titles
	//jQuery('h1.sifr').sifr( { strSWF: './swf/tradegothic.swf', strColor: '#000000', strBgColor: '#ff0000' } );


});


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


