$(document).ready(function() {	
	$("#downloadLink").click(function(e) {
		e.preventDefault();
		$.get("get-download.php", {prod_id: $("#downloadLink").attr("rel")}, function(data){
		});
	});

	$('.feedbackTicker').vTicker({
	   speed: 500,
	   pause: 6000,
	   showItems: 1,
	   animation: 'fade',
	   mousePause: false
	});

	$("a.yes_send").click(function(e){
		e.preventDefault();
		var div = "#sendemail"+ $(this).attr("rel");
		$(div).slideDown(400);
		$(this).hide();
	});

});
