/**
 * $Id: vote.js 10 2009-08-31 06:30:07Z gigapromoters $
 * 
 * This file can not be redistributed to anyone without the permission of Giga Promoters
 * Copyright 2005 - 2008, Giga Promoters
 * 						  608 Aggarwal Cyber Plaza
 *						  Netaji Subhash Place, Delhi - 110034
 *						  www.gigapromoters.com
 * 
 *
 * @version 			$Rev: 10 $
 * @lastModifiedBy		$LastChangedBy: gigapromoters $
 * @lastChanged			$Date: 2009-08-31 12:00:07 +0530 (Mon, 31 Aug 2009) $
 * @copyright 			Giga Promoters (www.gigapromoters.com)
 * 
 */

/* for simple digg style voting */
function simple_voteUp(item_id, type)
{
	simple_vote(1, item_id, type);

}

function simple_voteDown(item_id, type)
{
	simple_vote(-1, item_id, type);
}

function simple_vote(score, item_id, type)
{
	$.getScript(URL+"votes/add/"+type+'/'+item_id+'/'+score+'?ajax=1&js=1');
}

/* for up down style voting */

function voteUp(item_id, type)
{
	vote(1, item_id, type);

}

function voteDown(item_id, type)
{
	vote(-1, item_id, type);
}

function vote(score, item_id, type)
{
	$.getScript(URL+"votes/add/"+type+'/'+item_id+'/'+score+'/?ajax=1&js=1');

}
