$(function(){
    
    $('.jQ_voting').click(function(){
        
        var won  = $(this).find('img').attr('rel');
        var lost = $('.jQ_voting').find('img').filter(function(){
            return ($(this).attr('rel') != won);
        }).attr('rel');

		majax.call_callback( 'plg_photos_battle_battleField::ajaxVote', function( r ){
			location.href = battleUrl;
		}, [ won, lost, null, null, true, $('.jQ_voting').find('img').index($('[rel="'+won+'"]')) ] );
        
        return false;
    });
	
	$(".jQ_voting").bind("mouseenter mouseleave", function(e) {
		 $(this).children('.hvr_img').toggle();
	});
	
})
