$(document).ready(function() {
	$('.tt_click').click(function() {
		var theID = $(this).attr('rel').split(":");
		var theHref = $(this).attr('href');
		
		$.post('http://www.yourgirlfriends.com/tourthumbs/trackclicks.php', {type: theID[0], id: theID[1]}, function (r) {
			if (theHref.length > 0) {
				location.href=theHref;
			}
		});
		
		return false;
	});
	
	$(".rater").rating({
		showCancel: false,
	}).bind("change", function() {
		var theID = $(this).attr('rel').split(":");
		var theVal = $(this).val();
		$.post('http://www.yourgirlfriends.com/tourthumbs/rate.php', {type: theID[0], id: theID[1], val: theVal}, function (r) {
			if (r != '') {
				$('#' + theID[0] + theID[1] + '_votes').html(r);
			}
		});
	});
});