/**
 * $Id: vote.js 4 2009-03-27 05:01:06Z gpo_shrey $
 * 
 * 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: 4 $
 * @lastModifiedBy		$LastChangedBy: gpo_shrey $
 * @lastChanged			$Date: 2009-03-27 00:01:06 -0500 (Fri, 27 Mar 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);

}