$(document).ready(function(){
	$(".sub a[href='/index.php?my&p=ocash_balance']").attr('href','javascript:;').parent('li').addClass('ocash_balance');
});

function buywithocash(productid,balance,points){
	if(points > balance){
		alert('Sorry you don\'t have enough ocash points to perform this transaction');
	}else{
		redirect('index.php?my&p=redeem&pid='+productid);
	}
}

/*functions*/
function redirect(path){
	var newURL = window.location.protocol + '//' + window.location.host + '/' + path;
	window.location = newURL;
}
